nixpkgs/pkgs/by-name/me/menulibre/package.nix
Ben Siraphob 8222aa9278
Merge pull request #315183 from jopejoe1/fix-pname
treewide: replace name with pname
2024-06-16 12:34:01 +00:00

66 lines
1.4 KiB
Nix

{ lib
, fetchFromGitHub
, python3Packages
, gnome-menus
, gtk3
, intltool
, gobject-introspection
, wrapGAppsHook3
, nix-update-script
, testers
, menulibre
}:
python3Packages.buildPythonApplication rec {
pname = "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
wrapGAppsHook3
];
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 = "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;
};
}