devbox: 0.1.2 -> 0.2.0
This commit is contained in:
parent
6175aaa7d2
commit
7337718da2
1 changed files with 4 additions and 4 deletions
|
@ -5,25 +5,25 @@
|
||||||
}:
|
}:
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "devbox";
|
pname = "devbox";
|
||||||
version = "0.1.2";
|
version = "0.2.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jetpack-io";
|
owner = "jetpack-io";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-AUZPMNGhYimoqcFNeYg5lj3NGDnna5XE4plC9eEDVXg=";
|
hash = "sha256-zfNVx3u4MtpVzxTK1yvLvPJcHUGcCFwZlGL0rZeCt4M=";
|
||||||
};
|
};
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-s"
|
"-s"
|
||||||
"-w"
|
"-w"
|
||||||
"-X go.jetpack.io/devbox/build.Version=${version}"
|
"-X go.jetpack.io/devbox/internal/build.Version=${version}"
|
||||||
];
|
];
|
||||||
|
|
||||||
# integration tests want file system access
|
# integration tests want file system access
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
vendorHash = "sha256-tnQCRrpOI1qgsouI7pLO4gLTDwEiHZV1KeNSy07wS4o=";
|
vendorHash = "sha256-KQu1Ik15YR3R+taqOJI9jUlGiVJDkVhytxPTl4sCQOk=";
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue