apx 2.1.0 -> 2.1.1 https://repology.org/project/apx-package-manager/versions attrpath: apx Checking auto update branch... No auto update branch exists Old version 2.1.0" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub , distrobox }: buildGoModule rec { pname = "apx"; version = "2.1.1"; src = fetchFromGitHub { owner = "Vanilla-OS"; repo = pname; rev = "v${version}"; hash = "sha256-TXGfJHe4dOOpP7iJFbjL5WnqcxHeOn5naKjnBQ3c5dE="; }; vendorHash = null; ldflags = [ "-s" "-w" ]; postPatch = '' substituteInPlace config/apx.json \ --replace "/usr/share/apx/distrobox/distrobox" "${distrobox}/bin/distrobox" \ --replace "/usr/share/apx" "$out/bin/apx" substituteInPlace settings/config.go \ --replace "/usr/share/apx/" "$out/share/apx/" ''; postInstall = '' install -D config/apx.json -t $out/share/apx/ install -D man/man1/apx.1 -t $out/man/man1/ ''; meta = with lib; { description = "The Vanilla OS package manager"; homepage = "https://github.com/Vanilla-OS/apx"; changelog = "https://github.com/Vanilla-OS/apx/releases/tag/v${version}"; license = licenses.gpl3Only; maintainers = with maintainers; [ dit7ya chewblacka ]; mainProgram = "apx"; }; }