1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/misc/notejot/default.nix

49 lines
1.2 KiB
Nix
Raw Normal View History

2018-10-31 21:58:23 +00:00
{ stdenv, fetchFromGitHub, vala_0_40, pkgconfig, meson, ninja, python3, granite
2018-09-08 09:07:55 +01:00
, gtk3, gnome3, gtksourceview, json-glib, gobjectIntrospection, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "notejot";
2018-10-31 21:58:23 +00:00
version = "1.4.7";
2018-09-08 09:07:55 +01:00
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "lainsce";
repo = pname;
rev = version;
sha256 = "0mjig4y2rb6v2dyzya44mfz0dxgp5wnjs3kdavf9ha2jzjjr5xyb";
};
nativeBuildInputs = [
gobjectIntrospection
meson
ninja
pkgconfig
python3
2018-10-31 21:58:23 +00:00
vala_0_40 # should be `elementary.vala` when elementary attribute set is merged
2018-09-08 09:07:55 +01:00
wrapGAppsHook
];
buildInputs = [
2018-10-31 21:58:23 +00:00
gnome3.defaultIconTheme # should be `elementary.defaultIconTheme`when elementary attribute set is merged
2018-09-08 09:07:55 +01:00
gnome3.libgee
granite
gtk3
gtksourceview
json-glib
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
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 09:07:55 +01:00
maintainers = with maintainers; [ worldofpeace ];
2018-10-31 21:58:23 +00:00
platforms = platforms.linux;
2018-09-08 09:07:55 +01:00
};
}