{ lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "jumppad"; version = "0.12.0"; src = fetchFromGitHub { owner = "jumppad-labs"; repo = "jumppad"; rev = version; hash = "sha256-eO/BZ59MZI1zaRCkbhBks55Jbf1i0M4XFHjAV03xp9k="; }; vendorHash = "sha256-FPM0q1ZVDfo00Z6QEXqtqfx77qkq5HhB+3vF9z9zrM0="; subPackages = [ "." ]; ldflags = [ "-s" "-X main.version=${version}" ]; # Tests require a large variety of tools and resources to run including # Kubernetes, Docker, and GCC. doCheck = false; meta = with lib; { description = "Tool for building modern cloud native development environments"; homepage = "https://jumppad.dev"; license = licenses.mpl20; maintainers = with maintainers; [ cpcloud ]; mainProgram = "jumppad"; }; }