1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule 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;
18
19 ldflags = [
20 "-s"
21 "-w"
22 "-X main.version=${version}"
23 ];
24
25 # Check are disable since they requiered a working K8S cluster
26 # TODO: add a nixosTest to be able to perform the package check
27 doCheck = false;
28
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 };
36}