2021-01-09 10:05:03 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
2023-07-15 17:15:38 +00:00
|
|
|
pname = "jumppad";
|
2023-11-16 04:20:00 +00:00
|
|
|
version = "0.5.53";
|
2021-01-09 10:05:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2023-07-15 17:15:38 +00:00
|
|
|
owner = "jumppad-labs";
|
2021-01-09 10:05:03 +00:00
|
|
|
repo = pname;
|
2023-07-15 17:15:38 +00:00
|
|
|
rev = "v${version}";
|
2023-11-16 04:20:00 +00:00
|
|
|
hash = "sha256-93KTi7m+7zS6hSIF4dA995Z8jUdmE5u3O8ytCLsEqdE=";
|
2021-01-09 10:05:03 +00:00
|
|
|
};
|
2023-11-16 04:20:00 +00:00
|
|
|
vendorHash = "sha256-o3jA1gVKW6KUHzy5zZO4aaGVoCBFN96hbK0/usQ32fw=";
|
2021-01-09 10:05:03 +00:00
|
|
|
|
2021-08-27 14:25:00 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s" "-w" "-X main.version=${version}"
|
2021-01-09 10:05:03 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# Tests require a large variety of tools and resources to run including
|
|
|
|
# Kubernetes, Docker, and GCC.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2023-07-15 17:15:38 +00:00
|
|
|
description = "A tool for building modern cloud native development environments";
|
|
|
|
homepage = "https://jumppad.dev";
|
2021-01-09 10:05:03 +00:00
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ cpcloud ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "jumppad";
|
2021-01-09 10:05:03 +00:00
|
|
|
};
|
|
|
|
}
|