3
0
Fork 0
forked from mirrors/nixpkgs

notes-up: init at 1.6.3

This commit is contained in:
worldofpeace 2019-02-05 15:34:54 -05:00
parent 6e69626680
commit 276077a42f
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, cmake, ninja, gtk3, gtksourceview3, webkitgtk, gtkspell3, glib, libgee, sqlite, discount, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "notes-up";
version = "1.6.3";
src = fetchFromGitHub {
owner = "Philip-Scott";
repo = "Notes-up";
rev = version;
sha256 = "06fzdb823kkami0jch9ccblsvw3x7zd1d4xz8fv3giscl3f36x4q";
};
nativeBuildInputs = [
cmake
ninja
pantheon.vala
pkgconfig
wrapGAppsHook
];
buildInputs = [
discount
glib
gtk3
gtksourceview3
gtkspell3
libgee
pantheon.granite
sqlite
webkitgtk
];
meta = with stdenv.lib; {
description = "Markdown notes editor and manager designed for elementary OS";
homepage = https://github.com/Philip-Scott/Notes-up;
license = licenses.gpl2;
maintainers = with maintainers; [ davidak worldofpeace ];
platforms = platforms.linux;
};
}

View file

@ -4497,6 +4497,8 @@ in
notify-osd = callPackage ../applications/misc/notify-osd { };
notes-up = callPackage ../applications/office/notes-up { };
notify-osd-customizable = callPackage ../applications/misc/notify-osd-customizable { };
nox = callPackage ../tools/package-management/nox { };