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
|
|
|
|
, wrapGAppsHook }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "appeditor";
|
|
|
|
version = "1.1.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "donadigo";
|
|
|
|
repo = "appeditor";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "04x2f4x4dp5ca2y3qllqjgirbyl6383pfl4bi9bkcqlg8b5081rg";
|
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
|
];
|
|
|
|
|
2019-11-07 21:43:03 +00:00
|
|
|
patches = [
|
|
|
|
# See: https://github.com/donadigo/appeditor/issues/88
|
|
|
|
./fix-build-vala-0.46.patch
|
|
|
|
];
|
|
|
|
|
2019-03-06 09:30:05 +00:00
|
|
|
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";
|
2020-05-08 08:08:53 +01:00
|
|
|
maintainers = with maintainers; [ xiorcale ] ++ pantheon.maintainers;
|
2019-03-06 09:30:05 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|