Merge pull request #100653 from trepetti/marker
marker: init at 2020.04.04
This commit is contained in:
commit
aee8263788
49
pkgs/applications/editors/marker/default.nix
Normal file
49
pkgs/applications/editors/marker/default.nix
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, wrapGAppsHook
|
||||||
|
, gtk3
|
||||||
|
, gtksourceview
|
||||||
|
, gtkspell3
|
||||||
|
, webkitgtk
|
||||||
|
, pandoc
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "marker";
|
||||||
|
version = "2020.04.04";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "fabiocolacio";
|
||||||
|
repo = "Marker";
|
||||||
|
rev = "${version}";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
sha256 = "1iy7izyprf050bix8am1krqivgyxnhx3jm775v8f80cgbqxy7m5r";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkg-config
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gtk3
|
||||||
|
gtksourceview
|
||||||
|
gtkspell3
|
||||||
|
webkitgtk
|
||||||
|
pandoc
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
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}";
|
||||||
|
};
|
||||||
|
}
|
@ -21358,6 +21358,8 @@ in
|
|||||||
|
|
||||||
lwm = callPackage ../applications/window-managers/lwm { };
|
lwm = callPackage ../applications/window-managers/lwm { };
|
||||||
|
|
||||||
|
marker = callPackage ../applications/editors/marker { };
|
||||||
|
|
||||||
musikcube = callPackage ../applications/audio/musikcube {};
|
musikcube = callPackage ../applications/audio/musikcube {};
|
||||||
|
|
||||||
pinboard = with python3Packages; toPythonApplication pinboard;
|
pinboard = with python3Packages; toPythonApplication pinboard;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user