Merge pull request #329514 from chewblacka/update-apx

apx: 2.4.2 -> 2.4.3
This commit is contained in:
Fabián Heredia Montiel
2024-07-23 23:59:24 -06:00
committed by GitHub
2 changed files with 4 additions and 6 deletions
@@ -9,21 +9,21 @@
buildGoModule rec {
pname = "apx";
version = "2.4.2";
version = "2.4.3";
src = fetchFromGitHub {
owner = "Vanilla-OS";
repo = "apx";
rev = "v${version}";
hash = "sha256-X6nphUzJc/R3Egw09eRQbza1QebpLGsMIfV7BpLOXTc=";
hash = "sha256-zzdg8cIu4+l8f//Rn11NByh6jfVpidZ+5PT+DubzYPU=";
};
vendorHash = "sha256-hGi+M5RRUL2oyxFGVeR0sum93/CA+FGYy0m4vDmlXTc=";
vendorHash = "sha256-YHnPLjZWUYoARHF4V1Pm1LYdCJGubPCve0wQ5FpeXUg=";
# podman needed for apx to not error when building shell completions
nativeBuildInputs = [ installShellFiles podman ];
ldflags = [ "-s" "-w" ];
ldflags = [ "-s" "-w" "-X 'main.Version=v${version}'" ];
postPatch = ''
substituteInPlace config/apx.json \
-2
View File
@@ -38638,8 +38638,6 @@ with pkgs;
eiciel = callPackage ../tools/filesystems/eiciel { };
apx = callPackage ../tools/package-management/apx { };
dpkg = callPackage ../tools/package-management/dpkg { };
dumb = callPackage ../misc/dumb { };