nixpkgs/pkgs/tools/virtualization/jumppad/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
766 B
Nix
Raw Normal View History

2020-08-02 18:41:16 +02:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
2023-06-06 10:04:38 +02:00
pname = "jumppad";
2023-10-01 03:49:14 +02:00
version = "0.5.51";
2020-08-02 18:41:16 +02:00
src = fetchFromGitHub {
2023-06-06 10:04:38 +02:00
owner = "jumppad-labs";
2020-08-02 18:41:16 +02:00
repo = pname;
2023-06-06 10:04:38 +02:00
rev = "v${version}";
2023-10-01 03:49:14 +02:00
hash = "sha256-Az/rNkGwwrYZfay+KjINjIT2PNsoGDNCwZnXZTeKqM4=";
2020-08-02 18:41:16 +02:00
};
2023-10-01 03:49:14 +02:00
vendorHash = "sha256-onUs7ZbnzJGbs+Q+1jvqUp9y9ecOxhtcdx/fkxZntmc=";
2020-08-02 18:41:16 +02:00
2021-08-26 08:45:51 +02:00
ldflags = [
"-s" "-w" "-X main.version=${version}"
2020-08-02 18:41:16 +02:00
];
# Tests require a large variety of tools and resources to run including
# Kubernetes, Docker, and GCC.
doCheck = false;
meta = with lib; {
2023-06-06 10:04:38 +02:00
description = "A tool for building modern cloud native development environments";
homepage = "https://jumppad.dev";
2020-08-02 18:41:16 +02:00
license = licenses.mpl20;
maintainers = with maintainers; [ cpcloud ];
};
}