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

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

64 lines
1.1 KiB
Nix
Raw Normal View History

2021-05-12 12:12:27 +00:00
{ lib
, stdenv
, fetchFromGitHub
, gtk4
2021-10-16 02:10:45 +00:00
, hicolor-icon-theme
2021-05-12 12:12:27 +00:00
, json-glib
, libadwaita
, libgee
, meson
, ninja
, nix-update-script
, pkg-config
, python3
, vala
2021-10-16 02:10:45 +00:00
, wrapGAppsHook4
2021-05-12 12:12:27 +00:00
}:
2018-09-08 08:07:55 +00:00
stdenv.mkDerivation rec {
pname = "notejot";
version = "3.4.9";
2018-09-08 08:07:55 +00:00
src = fetchFromGitHub {
owner = "lainsce";
repo = pname;
rev = version;
2022-01-01 02:00:22 +00:00
hash = "sha256-42k9CAnXAb7Ic580SIa95MDCkCWtso1F+0eD69HX8WI=";
2018-09-08 08:07:55 +00:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
2018-09-08 08:07:55 +00:00
python3
2021-10-16 02:10:45 +00:00
vala
wrapGAppsHook4
2018-09-08 08:07:55 +00:00
];
2021-10-16 02:10:45 +00:00
2018-09-08 08:07:55 +00:00
buildInputs = [
2021-05-12 12:12:27 +00:00
gtk4
2021-10-16 02:10:45 +00:00
hicolor-icon-theme
2018-09-08 08:07:55 +00:00
json-glib
2021-05-12 12:12:27 +00:00
libadwaita
libgee
2018-09-08 08:07:55 +00:00
];
postPatch = ''
2021-05-12 12:12:27 +00:00
chmod +x build-aux/post_install.py
patchShebangs build-aux/post_install.py
2018-09-08 08:07:55 +00:00
'';
2021-10-16 02:10:45 +00:00
passthru.updateScript = nix-update-script {
attrPath = pname;
};
meta = with lib; {
homepage = "https://github.com/lainsce/notejot";
description = "Stupidly-simple notes app";
2021-05-12 12:12:27 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ AndersonTorres ];
2018-10-31 21:58:23 +00:00
platforms = platforms.linux;
mainProgram = "io.github.lainsce.Notejot";
2018-09-08 08:07:55 +00:00
};
}