mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
61 lines
1.7 KiB
Nix
61 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
distrobox,
|
|
podman,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "apx";
|
|
version = "2.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Vanilla-OS";
|
|
repo = "apx";
|
|
rev = "v${version}";
|
|
hash = "sha256-X6nphUzJc/R3Egw09eRQbza1QebpLGsMIfV7BpLOXTc=";
|
|
};
|
|
|
|
vendorHash = "sha256-hGi+M5RRUL2oyxFGVeR0sum93/CA+FGYy0m4vDmlXTc=";
|
|
|
|
# podman needed for apx to not error when building shell completions
|
|
nativeBuildInputs = [ installShellFiles podman ];
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace config/apx.json \
|
|
--replace-fail "/usr/share/apx/distrobox/distrobox" "${distrobox}/bin/distrobox" \
|
|
--replace-fail "/usr/share/apx" "$out/bin/apx"
|
|
substituteInPlace settings/config.go \
|
|
--replace-fail "/usr/share/apx/" "$out/share/apx/"
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm444 config/apx.json -t $out/share/apx/
|
|
installManPage man/man1/*
|
|
install -Dm444 README.md -t $out/share/docs/apx
|
|
install -Dm444 COPYING.md $out/share/licenses/apx/LICENSE
|
|
|
|
# Create a temp writable home-dir so apx outputs completions without error
|
|
export HOME=$(mktemp -d)
|
|
# apx command now works (for completions)
|
|
# though complains "Error: no such file or directory"
|
|
installShellCompletion --cmd apx \
|
|
--bash <($out/bin/apx completion bash) \
|
|
--fish <($out/bin/apx completion fish) \
|
|
--zsh <($out/bin/apx completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "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";
|
|
};
|
|
}
|