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

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

53 lines
946 B
Nix
Raw Normal View History

2022-04-05 06:37:21 +02:00
{ stdenv
, lib
2020-10-16 00:25:19 +02:00
, fetchFromGitHub
2022-04-05 06:37:21 +02:00
, itstool
2020-10-16 00:25:19 +02:00
, meson
, ninja
, pkg-config
, wrapGAppsHook
, gtk3
, gtksourceview
, gtkspell3
, webkitgtk
, pandoc
}:
stdenv.mkDerivation rec {
pname = "marker";
2021-12-09 21:23:48 +01:00
version = "2020.04.04.2";
2020-10-16 00:25:19 +02:00
src = fetchFromGitHub {
owner = "fabiocolacio";
repo = "Marker";
rev = version;
2020-10-16 00:25:19 +02:00
fetchSubmodules = true;
2021-12-09 21:23:48 +01:00
sha256 = "sha256-wLR1FQqlLA02ed/JoAcxRHhIVua1FibAee1PC2zOPOM=";
2020-10-16 00:25:19 +02:00
};
nativeBuildInputs = [
2022-04-05 06:37:21 +02:00
itstool
2020-10-16 00:25:19 +02:00
meson
ninja
pkg-config
wrapGAppsHook
];
buildInputs = [
gtk3
gtksourceview
gtkspell3
webkitgtk
pandoc
];
meta = with lib; {
2020-10-16 00:25:19 +02: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}";
};
}