tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
vexctl: 0.3.0 -> 0.4.0
R. Ryantm
4 months ago
d54d93e9
adbb27e1
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ve
vexctl
package.nix
+3
-3
pkgs/by-name/ve/vexctl/package.nix
···
9
10
buildGoModule rec {
11
pname = "vexctl";
12
-
version = "0.3.0";
13
14
src = fetchFromGitHub {
15
owner = "openvex";
16
repo = "vexctl";
17
tag = "v${version}";
18
-
hash = "sha256-rJK9OTaEF0PU12m7voMUHPHI2/Je7wh6w2Zr1Ug8+1w=";
19
# populate values that require us to use git. By doing this in postFetch we
20
# can delete .git afterwards and maintain better reproducibility of the src.
21
leaveDotGit = true;
···
28
'';
29
};
30
31
-
vendorHash = "sha256-YVMg9tjwJmrqxB2GmVuLkzsGXGlpp5gmZZTmv+PGWPc=";
32
33
nativeBuildInputs = [ installShellFiles ];
34
···
9
10
buildGoModule rec {
11
pname = "vexctl";
12
+
version = "0.4.0";
13
14
src = fetchFromGitHub {
15
owner = "openvex";
16
repo = "vexctl";
17
tag = "v${version}";
18
+
hash = "sha256-LAl56aB7bFXrXK8wSAmQleWTy8q9Gx1+fxpmSTMp2Cg=";
19
# populate values that require us to use git. By doing this in postFetch we
20
# can delete .git afterwards and maintain better reproducibility of the src.
21
leaveDotGit = true;
···
28
'';
29
};
30
31
+
vendorHash = "sha256-G0w5auYmSED6ktTDayfOSu/9QQLTuFCkjW/f9ekn/Hw=";
32
33
nativeBuildInputs = [ installShellFiles ];
34