nixpkgs/pkgs/applications/editors/marker/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
923 B
Nix
Raw Normal View History

{ lib, stdenv
2020-10-15 22:25:19 +00:00
, fetchFromGitHub
, meson
, ninja
, pkg-config
, wrapGAppsHook
, gtk3
, gtksourceview
, gtkspell3
, webkitgtk
, pandoc
}:
stdenv.mkDerivation rec {
pname = "marker";
2021-12-09 20:23:48 +00:00
version = "2020.04.04.2";
2020-10-15 22:25:19 +00:00
src = fetchFromGitHub {
owner = "fabiocolacio";
repo = "Marker";
rev = version;
2020-10-15 22:25:19 +00:00
fetchSubmodules = true;
2021-12-09 20:23:48 +00:00
sha256 = "sha256-wLR1FQqlLA02ed/JoAcxRHhIVua1FibAee1PC2zOPOM=";
2020-10-15 22:25:19 +00:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
wrapGAppsHook
];
buildInputs = [
gtk3
gtksourceview
gtkspell3
webkitgtk
pandoc
];
meta = with lib; {
2020-10-15 22:25:19 +00:00
homepage = "https://fabiocolacio.github.io/Marker/";
description = "Markdown editor for the Linux desktop";
maintainers = with maintainers; [ trepetti ];
license = licenses.gpl3Plus;
platforms = platforms.linux;
changelog = "https://github.com/fabiocolacio/Marker/releases/tag/${version}";
};
}