depot/third_party/nixpkgs/pkgs/tools/package-management/apx/default.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, buildGoModule
, fetchFromGitHub
, distrobox
, installShellFiles
}:
buildGoModule rec {
pname = "apx";
version = "2.2.0";
src = fetchFromGitHub {
owner = "Vanilla-OS";
repo = "apx";
rev = "v${version}";
hash = "sha256-za3QS0ZJuxSCt5xbYa/Kt4ARsDhUn34vJTy0fJoqr9U=";
};
vendorHash = null;
nativeBuildInputs = [ installShellFiles ];
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 -m 444 -D config/apx.json -t $out/share/apx/
installManPage 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";
};
}