mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
475bf6d2a5
remove explicit dependencies, upstream vendorizes them properly
27 lines
782 B
Nix
27 lines
782 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub, pkgconfig, Hypervisor, vmnet }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "docker-machine-xhyve";
|
|
version = "0.4.0";
|
|
|
|
goPackagePath = "github.com/zchee/docker-machine-driver-xhyve";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "machine-drivers";
|
|
repo = "docker-machine-driver-xhyve";
|
|
sha256 = "0000v97fr8xc5b39v44hsa87wrbk4bcwyaaivxv4hxlf4vlgg863";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ Hypervisor vmnet ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/machine-drivers/docker-machine-driver-xhyve;
|
|
description = "Xhyve driver for docker-machine.";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ periklis ];
|
|
platforms = platforms.darwin;
|
|
};
|
|
}
|