mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
28 lines
910 B
Nix
28 lines
910 B
Nix
{ stdenv, lib, fetchFromGitHub, makeWrapper
|
|
, bridge-utils, iproute, lxc, openvswitch, docker, busybox, dhcpcd, dhcp
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pipework-${version}";
|
|
version = "2017-08-22";
|
|
src = fetchFromGitHub {
|
|
owner = "jpetazzo";
|
|
repo = "pipework";
|
|
rev = "ae42f1b5fef82b3bc23fe93c95c345e7af65fef3";
|
|
sha256 = "0c342m0bpq6ranr7dsxk9qi5mg3j5aw9wv85ql8gprdb2pz59qy8";
|
|
};
|
|
buildInputs = [ makeWrapper ];
|
|
installPhase = ''
|
|
install -D pipework $out/bin/pipework
|
|
wrapProgram $out/bin/pipework --prefix PATH : \
|
|
${lib.makeBinPath [ bridge-utils iproute lxc openvswitch docker busybox dhcpcd dhcp ]};
|
|
'';
|
|
meta = with lib; {
|
|
description = "Software-Defined Networking tools for LXC";
|
|
homepage = https://github.com/jpetazzo/pipework;
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
};
|
|
}
|