biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / earthly / default.nix
blob634f03101c83dce67d6c4cd6c8c60dd63050f8e2
1 { lib, buildGoModule, fetchFromGitHub, stdenv, testers, earthly }:
3 buildGoModule rec {
4   pname = "earthly";
5   version = "0.8.8";
7   src = fetchFromGitHub {
8     owner = "earthly";
9     repo = "earthly";
10     rev = "v${version}";
11     hash = "sha256-nvjoHU+LuyZy8NxMRWYMCQlvq5E6va2x16JRDdFI+70=";
12   };
14   vendorHash = "sha256-66xN4uUeEFHpI/pAP7akG4YQhbY7ylu8AVOJnx60c7s=";
15   subPackages = [ "cmd/earthly" "cmd/debugger" ];
17   CGO_ENABLED = 0;
19   ldflags = [
20     "-s"
21     "-w"
22     "-X main.Version=v${version}"
23     "-X main.DefaultBuildkitdImage=docker.io/earthly/buildkitd:v${version}"
24     "-X main.GitSha=v${version}"
25     "-X main.DefaultInstallationName=earthly"
26   ] ++ lib.optionals stdenv.isLinux [
27     "-extldflags '-static'"
28   ];
30   tags = [
31     "dfrunmount"
32     "dfrunnetwork"
33     "dfrunsecurity"
34     "dfsecrets"
35     "dfssh"
36   ];
38   postInstall = ''
39     mv $out/bin/debugger $out/bin/earthly-debugger
40   '';
42   passthru = {
43     tests.version = testers.testVersion {
44       package = earthly;
45       version = "v${version}";
46     };
47   };
49   meta = with lib; {
50     description = "Build automation for the container era";
51     homepage = "https://earthly.dev/";
52     changelog = "https://github.com/earthly/earthly/releases/tag/v${version}";
53     license = licenses.mpl20;
54     maintainers = with maintainers; [ zoedsoupe konradmalik ];
55   };