mirror of
https://code.dumpstack.io/tools/appvm.git
synced 2024-11-17 21:59:24 +00:00
Use master instead of latest tag
This commit is contained in:
parent
a264cb2ced
commit
f15d0fb07a
14
default.nix
14
default.nix
|
@ -9,16 +9,20 @@
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
pname = "appvm";
|
pname = "appvm";
|
||||||
version = "0.3";
|
#version = "0.3";
|
||||||
|
version = "master";
|
||||||
|
|
||||||
buildInputs = [ makeWrapper ];
|
buildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
goPackagePath = "code.dumpstack.io/tools/${pname}";
|
goPackagePath = "code.dumpstack.io/tools/${pname}";
|
||||||
|
|
||||||
src = fetchgit {
|
# src = fetchgit {
|
||||||
rev = "refs/tags/v${version}";
|
# rev = "refs/tags/v${version}";
|
||||||
url = "https://code.dumpstack.io/tools/${pname}.git";
|
# url = "https://code.dumpstack.io/tools/${pname}.git";
|
||||||
sha256 = "1ji4g868xrv6kx6brdrqfv0ca12vjw0mcndffnnwpczh4yv81sd3";
|
# sha256 = "1ji4g868xrv6kx6brdrqfv0ca12vjw0mcndffnnwpczh4yv81sd3";
|
||||||
|
src = builtins.fetchGit {
|
||||||
|
url = "https://code.dumpstack.io/tools/appvm.git";
|
||||||
|
ref = "master";
|
||||||
};
|
};
|
||||||
|
|
||||||
goDeps = ./deps.nix;
|
goDeps = ./deps.nix;
|
||||||
|
|
Loading…
Reference in a new issue