biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / virtualization / jumppad / default.nix
blob4ededb4c283264f9f1ad1b02eff8d59ed7ce92b8
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "jumppad";
5   version = "0.15.0";
7   src = fetchFromGitHub {
8     owner = "jumppad-labs";
9     repo = "jumppad";
10     rev = version;
11     hash = "sha256-UO1a8CoHLNoo74zJkzgSlTkB7XWWHWu2EUiqCvLOQj8=";
12   };
13   vendorHash = "sha256-S4SyuidH8sxJbuG7yHgSP/iHcuP1h5EHaW8X6gG4GNw=";
15   subPackages = [ "." ];
17   ldflags = [
18     "-s"
19     "-X main.version=${version}"
20   ];
22   # Tests require a large variety of tools and resources to run including
23   # Kubernetes, Docker, and GCC.
24   doCheck = false;
26   meta = with lib; {
27     description = "Tool for building modern cloud native development environments";
28     homepage = "https://jumppad.dev";
29     license = licenses.mpl20;
30     maintainers = with maintainers; [ cpcloud ];
31     mainProgram = "jumppad";
32   };