tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
devspace: 6.3.3 -> 6.3.4
Aaron Jheng
2 years ago
af7d0d24
56764a2e
+11
-5
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
misc
devspace
default.nix
+11
-5
pkgs/development/tools/misc/devspace/default.nix
···
1
1
{ lib
2
2
, buildGoModule
3
3
, fetchFromGitHub
4
4
+
, testers
5
5
+
, devspace
4
6
}:
5
7
6
8
buildGoModule rec {
7
9
pname = "devspace";
8
8
-
version = "6.3.3";
10
10
+
version = "6.3.4";
9
11
10
12
src = fetchFromGitHub {
11
11
-
owner = "loft-sh";
13
13
+
owner = "devspace-sh";
12
14
repo = "devspace";
13
15
rev = "v${version}";
14
14
-
sha256 = "sha256-xAK06bpl8BGsVUu6O1C2l+tzeiCQoRUMIUtwntUZVvU=";
16
16
+
hash = "sha256-AKEa9LDe1bLJxJH5k4axALoWkTh+bkBviCpof7x7+fY=";
15
17
};
16
18
17
19
vendorHash = null;
···
26
28
# TODO: add a nixosTest to be able to perform the package check
27
29
doCheck = false;
28
30
31
31
+
passthru.tests.version = testers.testVersion {
32
32
+
package = devspace;
33
33
+
};
34
34
+
29
35
meta = with lib; {
30
30
-
description = "DevSpace is an open-source developer tool for Kubernetes that lets you develop and deploy cloud-native software faster";
36
36
+
description = "An open-source developer tool for Kubernetes that lets you develop and deploy cloud-native software faster";
31
37
homepage = "https://devspace.sh/";
32
32
-
changelog = "https://github.com/loft-sh/devspace/releases/tag/v${version}";
38
38
+
changelog = "https://github.com/devspace-sh/devspace/releases/tag/v${version}";
33
39
license = licenses.asl20;
34
40
maintainers = with maintainers; [ darkonion0 ];
35
41
};