mirror of
https://code.dumpstack.io/tools/appvm.git
synced 2024-11-04 15:33:18 +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 {
|
||||
pname = "appvm";
|
||||
version = "0.3";
|
||||
#version = "0.3";
|
||||
version = "master";
|
||||
|
||||
buildInputs = [ makeWrapper ];
|
||||
|
||||
goPackagePath = "code.dumpstack.io/tools/${pname}";
|
||||
|
||||
src = fetchgit {
|
||||
rev = "refs/tags/v${version}";
|
||||
url = "https://code.dumpstack.io/tools/${pname}.git";
|
||||
sha256 = "1ji4g868xrv6kx6brdrqfv0ca12vjw0mcndffnnwpczh4yv81sd3";
|
||||
# src = fetchgit {
|
||||
# rev = "refs/tags/v${version}";
|
||||
# url = "https://code.dumpstack.io/tools/${pname}.git";
|
||||
# sha256 = "1ji4g868xrv6kx6brdrqfv0ca12vjw0mcndffnnwpczh4yv81sd3";
|
||||
src = builtins.fetchGit {
|
||||
url = "https://code.dumpstack.io/tools/appvm.git";
|
||||
ref = "master";
|
||||
};
|
||||
|
||||
goDeps = ./deps.nix;
|
||||
|
|
Loading…
Reference in a new issue