tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
tea: 0.8.0 -> 0.9.0
techknowlogick
3 years ago
3e3e699c
848939f1
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
tea
default.nix
+4
-4
pkgs/tools/misc/tea/default.nix
···
2
3
buildGoModule rec {
4
pname = "tea";
5
-
version = "0.8.0";
6
7
src = fetchFromGitea {
8
domain = "gitea.com";
9
owner = "gitea";
10
repo = "tea";
11
rev = "v${version}";
12
-
sha256 = "sha256-LtLel6JfmYr2Zu7g7oBjAqDcl5y7tJL3XGL7gw+kHxU=";
13
};
14
15
-
vendorSha256 = null;
16
17
meta = with lib; {
18
description = "Gitea official CLI client";
19
homepage = "https://gitea.com/gitea/tea";
20
license = licenses.mit;
21
-
maintainers = [ maintainers.j4m3s ];
22
};
23
}
···
2
3
buildGoModule rec {
4
pname = "tea";
5
+
version = "0.9.0";
6
7
src = fetchFromGitea {
8
domain = "gitea.com";
9
owner = "gitea";
10
repo = "tea";
11
rev = "v${version}";
12
+
sha256 = "sha256-Bvee8m/BXvPtaaD8xjVg9qzorO0ln6xHP1upPgWoD+A=";
13
};
14
15
+
vendorSha256 = "sha256-nb0lQEAaIYlGpodFQLhMk/24DmTgg5K3zQ4s/XY+Z1w=";
16
17
meta = with lib; {
18
description = "Gitea official CLI client";
19
homepage = "https://gitea.com/gitea/tea";
20
license = licenses.mit;
21
+
maintainers = with maintainers; [ j4m3s techknowlogick ];
22
};
23
}