mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
9934f533f4
compile `builtkitd` only on Linux, `buildkitctl` on all envs. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
25 lines
693 B
Nix
25 lines
693 B
Nix
{ stdenv, fetchFromGitHub, buildGoPackage }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "buildkit";
|
|
version = "0.4.0";
|
|
rev = "v${version}";
|
|
|
|
goPackagePath = "github.com/moby/buildkit";
|
|
subPackages = [ "cmd/buildctl" ] ++ stdenv.lib.optionals stdenv.isLinux [ "cmd/buildkitd" ];
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "moby";
|
|
repo = "buildkit";
|
|
sha256 = "0gkwcjqbcskn63y79jwa26hxkps452z4bgz8lrryaskzbdpvhh3d";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Concurrent, cache-efficient, and Dockerfile-agnostic builder toolkit";
|
|
homepage = https://github.com/moby/buildkit;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ vdemeester ];
|
|
};
|
|
}
|