tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gomi: 1.6.0 -> 1.6.1
R. Ryantm
7 months ago
3b039de9
2576cf9c
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
go
gomi
package.nix
+4
-4
pkgs/by-name/go/gomi/package.nix
···
6
7
buildGoModule rec {
8
pname = "gomi";
9
-
version = "1.6.0";
10
11
src = fetchFromGitHub {
12
owner = "b4b4r07";
13
repo = "gomi";
14
tag = "v${version}";
15
-
hash = "sha256-0C+us4GO8Jd51ATaaf0aRU3NnhmDvu0I3qDDXBoaiXU=";
16
# populate values that require us to use git. By doing this in postFetch we
17
# can delete .git afterwards and maintain better reproducibility of the src.
18
leaveDotGit = true;
···
24
'';
25
};
26
27
-
vendorHash = "sha256-8aw81DKBmgNsQzgtHCsUkok5e5+LeAC8BUijwKVT/0s=";
28
29
subPackages = [ "." ];
30
31
# Add version information fetched from the repository to ldflags.
32
-
# https://github.com/babarot/gomi/blob/v1.6.0/.goreleaser.yaml#L20-L22
33
ldflags = [
34
"-X main.version=v${version}"
35
];
···
6
7
buildGoModule rec {
8
pname = "gomi";
9
+
version = "1.6.1";
10
11
src = fetchFromGitHub {
12
owner = "b4b4r07";
13
repo = "gomi";
14
tag = "v${version}";
15
+
hash = "sha256-Sxf/x29uADkdILrWwdKZhTc1Y7zCJbpMNK6vV/SGF1Q=";
16
# populate values that require us to use git. By doing this in postFetch we
17
# can delete .git afterwards and maintain better reproducibility of the src.
18
leaveDotGit = true;
···
24
'';
25
};
26
27
+
vendorHash = "sha256-Lt2SA3IHD8wDxv5bScU37hqStnfxVYQQZS6ajr7PhJM=";
28
29
subPackages = [ "." ];
30
31
# Add version information fetched from the repository to ldflags.
32
+
# https://github.com/babarot/gomi/blob/v1.6.1/.goreleaser.yaml#L20-L22
33
ldflags = [
34
"-X main.version=v${version}"
35
];