mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
44 lines
1012 B
Nix
44 lines
1012 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, lib
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "devbox";
|
|
version = "0.5.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jetpack-io";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-BUbgujVPog5OZXTvaOUzAiu5s6QxA7bfbiikYXB5wMU=";
|
|
};
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X go.jetpack.io/devbox/internal/build.Version=${version}"
|
|
];
|
|
|
|
# integration tests want file system access
|
|
doCheck = false;
|
|
|
|
vendorHash = "sha256-JPbGvY+SMxqwCoh8Ea5iDmseonnp4Kczr5EzRbocb1s=";
|
|
|
|
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 ];
|
|
};
|
|
}
|