43 lines
1,011 B
Nix
43 lines
1,011 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, lib
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "devbox";
|
|
version = "0.5.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jetpack-io";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-dGBkLWF/lzE1WxC7BG52N2zJZJNL+wZGI/H+9Dy9zZk=";
|
|
};
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X go.jetpack.io/devbox/internal/build.Version=${version}"
|
|
];
|
|
|
|
# integration tests want file system access
|
|
doCheck = false;
|
|
|
|
vendorHash = "sha256-wsVJZEaLdx/rhVcl0LQwc7fw2H6S336kfP3eFuGd4tA=";
|
|
|
|
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 ];
|
|
};
|
|
}
|