2015-08-10 21:01:34 +02:00
|
|
|
{ stdenv, lib, fetchFromGitHub, makeWrapper
|
|
|
|
, bridge-utils, iproute, lxc, openvswitch, docker, busybox, dhcpcd, dhcp
|
|
|
|
}:
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "pipework";
|
2018-02-27 00:12:49 +01:00
|
|
|
version = "2017-08-22";
|
2015-08-10 21:01:34 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jpetazzo";
|
|
|
|
repo = "pipework";
|
2018-02-27 00:12:49 +01:00
|
|
|
rev = "ae42f1b5fef82b3bc23fe93c95c345e7af65fef3";
|
|
|
|
sha256 = "0c342m0bpq6ranr7dsxk9qi5mg3j5aw9wv85ql8gprdb2pz59qy8";
|
2015-08-10 21:01:34 +02:00
|
|
|
};
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
2018-02-27 00:12:49 +01:00
|
|
|
install -D pipework $out/bin/pipework
|
2015-08-10 21:01:34 +02:00
|
|
|
wrapProgram $out/bin/pipework --prefix PATH : \
|
2016-04-13 14:53:51 +02:00
|
|
|
${lib.makeBinPath [ bridge-utils iproute lxc openvswitch docker busybox dhcpcd dhcp ]};
|
2015-08-10 21:01:34 +02:00
|
|
|
'';
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Software-Defined Networking tools for LXC";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/jpetazzo/pipework";
|
2015-08-10 21:01:34 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
|
|
};
|
|
|
|
}
|