Merge pull request #235126 from MGlolenstine/apx

apx: 1.7.0-1 -> 1.8.2
This commit is contained in:
Fabian Affolter 2023-05-31 12:32:17 +02:00 committed by GitHub
commit c696a883b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,13 +9,13 @@
buildGoModule rec {
pname = "apx";
version = "1.7.0-1";
version = "1.8.2";
src = fetchFromGitHub {
owner = "Vanilla-OS";
repo = pname;
rev = "v${version}";
hash = "sha256-tonI3S0a08MbR369qaKS2BoWc3QzXWzTuGx/zSgUz7s=";
rev = "refs/tags/${version}";
hash = "sha256-nBhSl4r7LlgCA5/HCLpOleihE5n/JCJgf43KdCklQbg=";
};
vendorSha256 = null;
@ -41,13 +41,14 @@ buildGoModule rec {
wrapProgram $out/bin/apx --prefix PATH : ${lib.makeBinPath [ docker distrobox ]}
installManPage man/apx.1 man/es/apx.1
installManPage man/de/man1/apx.1 man/es/man1/apx.1 man/fr/man1/apx.1 man/it/man1/apx.1 man/man1/apx.1 man/nl/man1/apx.1 man/pl/man1/apx.1 man/pt/man1/apx.1 man/pt_BR/man1/apx.1 man/ro/man1/apx.1 man/ru/man1/apx.1 man/sv/man1/apx.1 man/tr/man1/apx.1
'';
meta = with lib; {
description = "The Vanilla OS package manager";
homepage = "https://github.com/Vanilla-OS/apx";
license = licenses.gpl3;
changelog = "https://github.com/Vanilla-OS/apx/releases/tag/${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ dit7ya ];
};
}