Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, lib
|
|
, stdenv
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "devbox";
|
|
version = "0.13.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jetpack-io";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-+3AKBhxf1m6cBNtEx8xmUmJ2PUk0LNPaS+cZhsXJoTs=";
|
|
};
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X go.jetpack.io/devbox/internal/build.Version=${version}"
|
|
];
|
|
|
|
subPackages = [ "cmd/devbox" ];
|
|
|
|
# integration tests want file system access
|
|
doCheck = false;
|
|
|
|
vendorHash = "sha256-rwmNzYzmZqNcNVV4GgqCVLT6ofIkblVCMJHLGwlhcGw=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
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 ];
|
|
};
|
|
}
|