mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3Packages
|
|
, gnome-menus
|
|
, gtk3
|
|
, intltool
|
|
, gobject-introspection
|
|
, wrapGAppsHook
|
|
, nix-update-script
|
|
, testers
|
|
, menulibre
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
name = "menulibre";
|
|
version = "2.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bluesabre";
|
|
repo = "menulibre";
|
|
rev = "menulibre-${version}";
|
|
hash = "sha256-IfsuOYP/H3r1GDWMVVSBfYvQS+01VJaAlZu+c05geWg=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pygobject3
|
|
gnome-menus
|
|
psutil
|
|
distutils-extra
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
gtk3
|
|
intltool
|
|
gobject-introspection
|
|
wrapGAppsHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace-fail 'data_dir =' "data_dir = '$out/share/menulibre' #" \
|
|
--replace-fail 'update_desktop_file(desktop_file, script_path)' ""
|
|
'';
|
|
|
|
preBuild = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests.version = testers.testVersion {
|
|
package = menulibre;
|
|
command = "HOME=$TMPDIR menulibre --version | cut -d' ' -f2";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "An advanced menu editor with an easy-to-use interface";
|
|
homepage = "https://bluesabre.org/projects/menulibre";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ lelgenio ];
|
|
mainProgram = "menulibre";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|