devbox: 0.1.2 -> 0.2.0

This commit is contained in:
Peter Nguyen 2022-12-25 21:58:18 -06:00
parent 6175aaa7d2
commit 7337718da2

View File

@ -5,25 +5,25 @@
}:
buildGoModule rec {
pname = "devbox";
version = "0.1.2";
version = "0.2.0";
src = fetchFromGitHub {
owner = "jetpack-io";
repo = pname;
rev = version;
hash = "sha256-AUZPMNGhYimoqcFNeYg5lj3NGDnna5XE4plC9eEDVXg=";
hash = "sha256-zfNVx3u4MtpVzxTK1yvLvPJcHUGcCFwZlGL0rZeCt4M=";
};
ldflags = [
"-s"
"-w"
"-X go.jetpack.io/devbox/build.Version=${version}"
"-X go.jetpack.io/devbox/internal/build.Version=${version}"
];
# integration tests want file system access
doCheck = false;
vendorHash = "sha256-tnQCRrpOI1qgsouI7pLO4gLTDwEiHZV1KeNSy07wS4o=";
vendorHash = "sha256-KQu1Ik15YR3R+taqOJI9jUlGiVJDkVhytxPTl4sCQOk=";
nativeBuildInputs = [ installShellFiles ];