mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
38 lines
898 B
Nix
38 lines
898 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "devspace";
|
|
version = "6.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "loft-sh";
|
|
repo = "devspace";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-2LSRmTWbG7sxV5e6N44HAPdqIL/O2UxcnuHXmbTooWs=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|