biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / buildkit / default.nix
blob325d51e939a477bcc25f3c6a2d169bc7cc3160b9
1 { lib, stdenv, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "buildkit";
5   version = "0.13.1";
7   src = fetchFromGitHub {
8     owner = "moby";
9     repo = "buildkit";
10     rev = "v${version}";
11     hash = "sha256-BrLDY3T40ndkjuWCx5kLZvMBp8xI5d3MFg9M3IpafWM=";
12   };
14   vendorHash = null;
16   subPackages = [ "cmd/buildctl" ] ++ lib.optionals stdenv.isLinux [ "cmd/buildkitd" ];
18   ldflags = [ "-s" "-w" "-X github.com/moby/buildkit/version.Version=${version}" "-X github.com/moby/buildkit/version.Revision=${src.rev}" ];
20   doCheck = false;
22   meta = with lib; {
23     description = "Concurrent, cache-efficient, and Dockerfile-agnostic builder toolkit";
24     homepage = "https://github.com/moby/buildkit";
25     changelog = "https://github.com/moby/buildkit/releases/tag/v${version}";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ vdemeester marsam developer-guy ];
28     mainProgram = "buildctl";
29   };