warpinator: 1.8.10 -> 2.0.0

https://github.com/linuxmint/warpinator/compare/1.8.10...2.0.0
This commit is contained in:
R. Ryantm
2025-11-22 20:36:46 +08:00
committed by Bobby Rong
parent 39a15b69c5
commit e47eb48d6d
+9 -2
View File
@@ -15,6 +15,7 @@
glib,
gitUpdater,
bubblewrap,
xapp-symbolic-icons,
}:
let
@@ -42,13 +43,13 @@ let
in
stdenv.mkDerivation rec {
pname = "warpinator";
version = "1.8.10";
version = "2.0.0";
src = fetchFromGitHub {
owner = "linuxmint";
repo = "warpinator";
rev = version;
hash = "sha256-OSZYjCnFIHmWCwVcWP1MLmezt5HL4Njf0WMyCRmPP58=";
hash = "sha256-R6ccyZLXwxvhvRCDguxufzXfVq5tzrPEtBbXgdO6AoI=";
};
nativeBuildInputs = [
@@ -89,6 +90,12 @@ stdenv.mkDerivation rec {
--replace-fail 'GLib.find_program_in_path("bwrap")' "True"
'';
preFixup = ''
gappsWrapperArgs+=(
--prefix XDG_DATA_DIRS : "${lib.makeSearchPath "share" [ xapp-symbolic-icons ]}"
)
'';
passthru.updateScript = gitUpdater {
ignoredVersions = "^master.*";
};