fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
43 lines
1,019 B
Nix
43 lines
1,019 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, lib
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "devbox";
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jetpack-io";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-v2EBN9zp6ssY0hWJQnhsIlRU3L7oOad46bvDUILGIv0=";
|
|
};
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X go.jetpack.io/devbox/internal/build.Version=${version}"
|
|
];
|
|
|
|
# integration tests want file system access
|
|
doCheck = false;
|
|
|
|
vendorHash = "sha256-efXYFVs+W6jkShWrU21WCiQqfaNX/9HLD8CxesbkR0s=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd devbox \
|
|
--bash <($out/bin/devbox completion bash) \
|
|
--fish <($out/bin/devbox completion fish) \
|
|
--zsh <($out/bin/devbox completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Instant, easy, predictable shells and containers.";
|
|
homepage = "https://www.jetpack.io/devbox";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ urandom lagoja ];
|
|
};
|
|
}
|