2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2019-03-06 09:30:05 +00:00
|
|
|
, fetchFromGitHub
|
2020-07-29 17:33:39 +01:00
|
|
|
, nix-update-script
|
2019-10-10 03:47:37 +01:00
|
|
|
, vala
|
2019-03-06 09:30:05 +00:00
|
|
|
, meson
|
|
|
|
, ninja
|
2021-01-17 02:09:27 +00:00
|
|
|
, pkg-config
|
2019-03-06 09:30:05 +00:00
|
|
|
, pantheon
|
|
|
|
, python3
|
|
|
|
, gettext
|
|
|
|
, glib
|
|
|
|
, gtk3
|
|
|
|
, libgee
|
2021-08-12 15:30:41 +01:00
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
2019-03-06 09:30:05 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "appeditor";
|
2021-12-20 00:35:13 +00:00
|
|
|
version = "1.1.3";
|
2019-03-06 09:30:05 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "donadigo";
|
|
|
|
repo = "appeditor";
|
|
|
|
rev = version;
|
2021-12-20 00:35:13 +00:00
|
|
|
sha256 = "sha256-0zutz1nnThyF7h44cDxjE53hhAJfJf6DTs9p4HflXr8=";
|
2019-03-06 09:30:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
gettext
|
|
|
|
meson
|
|
|
|
ninja
|
2019-10-10 03:47:37 +01:00
|
|
|
vala
|
2021-01-17 02:09:27 +00:00
|
|
|
pkg-config
|
2019-03-06 09:30:05 +00:00
|
|
|
python3
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
pantheon.granite
|
|
|
|
libgee
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson/post_install.py
|
|
|
|
patchShebangs meson/post_install.py
|
|
|
|
'';
|
|
|
|
|
2019-12-22 23:19:30 +00:00
|
|
|
passthru = {
|
2020-07-29 17:33:39 +01:00
|
|
|
updateScript = nix-update-script {
|
2019-12-22 23:19:30 +00:00
|
|
|
attrPath = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-03-06 09:30:05 +00:00
|
|
|
description = "Edit the Pantheon desktop application menu";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/donadigo/appeditor";
|
2021-09-18 16:00:51 +01:00
|
|
|
maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members;
|
2019-03-06 09:30:05 +00:00
|
|
|
platforms = platforms.linux;
|
2021-08-12 15:30:41 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2021-11-03 10:27:38 +00:00
|
|
|
mainProgram = "com.github.donadigo.appeditor";
|
2019-03-06 09:30:05 +00:00
|
|
|
};
|
|
|
|
}
|