1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

gearlever: 2.0.6 -> 2.0.7

gearlever: add libnotify to wrapper PATH
This commit is contained in:
R. Ryantm 2024-09-09 11:12:27 +00:00 committed by aleksana
parent d01b5ff5b5
commit 173ffd626e

View file

@ -16,18 +16,19 @@
appimage-run,
gtk4,
bintools,
libnotify,
}:
python3Packages.buildPythonApplication rec {
pname = "gearlever";
version = "2.0.6";
version = "2.0.7";
pyproject = false; # Built with meson
src = fetchFromGitHub {
owner = "mijorus";
repo = "gearlever";
rev = version;
hash = "sha256-+JuF0SL+2yVgkKPItt9Vq6SLcnxaMSWxIeVhY9XLX28=";
rev = "refs/tags/${version}";
hash = "sha256-Zp0w6ZJFRV5IANF0sY/n8jqgG+3h9J2eV/dUP+we8PY=";
};
postPatch =
@ -79,6 +80,7 @@ python3Packages.buildPythonApplication rec {
desktop-file-utils # update-desktop-database
gtk4.dev # gtk4-launch
bintools # readelf
libnotify # notify-send
]
}"
];