nixpkgs/pkgs/applications/misc/notejot/default.nix

51 lines
1023 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, vala, pkgconfig, meson, ninja, python3, pantheon
, gtk3, gtksourceview, json-glib, libgee, wrapGAppsHook }:
2018-09-08 08:07:55 +00:00
stdenv.mkDerivation rec {
pname = "notejot";
2020-01-17 08:52:48 +00:00
version = "1.6.0";
2018-09-08 08:07:55 +00:00
src = fetchFromGitHub {
owner = "lainsce";
repo = pname;
rev = version;
2020-01-17 08:52:48 +00:00
sha256 = "1b65m9gvq8ziqqgnw3vgjpjb1qw7bww40ngd3gardsjg9lcwpxaf";
2018-09-08 08:07:55 +00:00
};
nativeBuildInputs = [
meson
ninja
vala
2018-09-08 08:07:55 +00:00
pkgconfig
python3
wrapGAppsHook
];
buildInputs = [
gtk3
gtksourceview
json-glib
libgee
pantheon.elementary-icon-theme
pantheon.granite
2018-09-08 08:07:55 +00:00
];
postPatch = ''
patchShebangs meson/post_install.py
'';
2019-12-22 23:19:30 +00:00
passthru = {
updateScript = pantheon.updateScript {
attrPath = pname;
};
};
2018-09-08 08:07:55 +00:00
meta = with stdenv.lib; {
description = "Stupidly-simple sticky notes applet";
2018-10-31 21:58:23 +00:00
homepage = https://github.com/lainsce/notejot;
license = licenses.gpl2Plus;
2018-09-08 08:07:55 +00:00
maintainers = with maintainers; [ worldofpeace ];
2018-10-31 21:58:23 +00:00
platforms = platforms.linux;
2018-09-08 08:07:55 +00:00
};
}