devspace: init at 5.18.4
devspace: add go ldflag devspace: add missing ldflags devspace: reformat code devspace: add comments
This commit is contained in:
parent
2696f4c696
commit
a14a51f417
37
pkgs/development/tools/misc/devspace/default.nix
Normal file
37
pkgs/development/tools/misc/devspace/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildGoModule,
|
||||||
|
fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "devspace";
|
||||||
|
version = "5.18.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "loft-sh";
|
||||||
|
repo = "devspace";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0s5117cgxgrxfki5drvg6d22dvrjffa03bi644zdl1p631r599r1";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = null;
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-s"
|
||||||
|
"-w"
|
||||||
|
"-X main.version=${version}"
|
||||||
|
];
|
||||||
|
|
||||||
|
# Check are disable since they requiered a working K8S cluster
|
||||||
|
# TODO: add a nixosTest to be able to perform the package check
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "DevSpace is an open-source developer tool for Kubernetes that lets you develop and deploy cloud-native software faster";
|
||||||
|
homepage = "https://devspace.sh/";
|
||||||
|
changelog = "https://github.com/loft-sh/devspace/releases/tag/v${version}";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ darkonion0 ];
|
||||||
|
};
|
||||||
|
}
|
@ -13641,6 +13641,8 @@ with pkgs;
|
|||||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
devspace = callPackage ../development/tools/misc/devspace { };
|
||||||
|
|
||||||
maturin = callPackage ../development/tools/rust/maturin {
|
maturin = callPackage ../development/tools/rust/maturin {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user