2021-05-12 12:12:27 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, gtk4
|
|
|
|
, json-glib
|
|
|
|
, libadwaita
|
|
|
|
, libgee
|
2022-04-20 03:27:32 +00:00
|
|
|
, desktop-file-utils
|
2021-05-12 12:12:27 +00:00
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, nix-update-script
|
|
|
|
, pkg-config
|
|
|
|
, 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";
|
2022-04-20 03:27:32 +00:00
|
|
|
version = "3.5.1";
|
2018-09-08 08:07:55 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lainsce";
|
|
|
|
repo = pname;
|
2022-02-13 03:28:32 +00:00
|
|
|
rev = version;
|
2022-04-20 03:27:32 +00:00
|
|
|
hash = "sha256-p5F0OITgfZyvHwndI5r5BE524+nft7A2XfR3BJZFamU=";
|
2018-09-08 08:07:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2022-04-20 03:27:32 +00:00
|
|
|
desktop-file-utils
|
2018-09-08 08:07:55 +00:00
|
|
|
meson
|
|
|
|
ninja
|
2021-01-17 02:09:27 +00:00
|
|
|
pkg-config
|
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
|
2018-09-08 08:07:55 +00:00
|
|
|
json-glib
|
2021-05-12 12:12:27 +00:00
|
|
|
libadwaita
|
2019-08-04 07:07:25 +00:00
|
|
|
libgee
|
2018-09-08 08:07:55 +00:00
|
|
|
];
|
|
|
|
|
2022-12-25 22:11:14 +00:00
|
|
|
passthru.updateScript = nix-update-script { };
|
2021-10-16 02:10:45 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/lainsce/notejot";
|
2022-02-13 03:28:32 +00:00
|
|
|
description = "Stupidly-simple notes app";
|
2021-05-12 12:12:27 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2022-02-13 03:28:32 +00:00
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
2018-10-31 21:58:23 +00:00
|
|
|
platforms = platforms.linux;
|
2021-11-03 10:27:38 +00:00
|
|
|
mainProgram = "io.github.lainsce.Notejot";
|
2018-09-08 08:07:55 +00:00
|
|
|
};
|
|
|
|
}
|