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
{ lib
2
, buildGoModule
3
, fetchFromGitHub
0
0
4
}:
5
6
buildGoModule rec {
7
pname = "devspace";
8
-
version = "6.3.3";
9
10
src = fetchFromGitHub {
11
-
owner = "loft-sh";
12
repo = "devspace";
13
rev = "v${version}";
14
-
sha256 = "sha256-xAK06bpl8BGsVUu6O1C2l+tzeiCQoRUMIUtwntUZVvU=";
15
};
16
17
vendorHash = null;
···
26
# TODO: add a nixosTest to be able to perform the package check
27
doCheck = false;
28
0
0
0
0
29
meta = with lib; {
30
-
description = "DevSpace is an open-source developer tool for Kubernetes that lets you develop and deploy cloud-native software faster";
31
homepage = "https://devspace.sh/";
32
-
changelog = "https://github.com/loft-sh/devspace/releases/tag/v${version}";
33
license = licenses.asl20;
34
maintainers = with maintainers; [ darkonion0 ];
35
};
···
1
{ lib
2
, buildGoModule
3
, fetchFromGitHub
4
+
, testers
5
+
, devspace
6
}:
7
8
buildGoModule rec {
9
pname = "devspace";
10
+
version = "6.3.4";
11
12
src = fetchFromGitHub {
13
+
owner = "devspace-sh";
14
repo = "devspace";
15
rev = "v${version}";
16
+
hash = "sha256-AKEa9LDe1bLJxJH5k4axALoWkTh+bkBviCpof7x7+fY=";
17
};
18
19
vendorHash = null;
···
28
# TODO: add a nixosTest to be able to perform the package check
29
doCheck = false;
30
31
+
passthru.tests.version = testers.testVersion {
32
+
package = devspace;
33
+
};
34
+
35
meta = with lib; {
36
+
description = "An open-source developer tool for Kubernetes that lets you develop and deploy cloud-native software faster";
37
homepage = "https://devspace.sh/";
38
+
changelog = "https://github.com/devspace-sh/devspace/releases/tag/v${version}";
39
license = licenses.asl20;
40
maintainers = with maintainers; [ darkonion0 ];
41
};