pipework: 2015-07-30 -> 2017-08-22

This commit is contained in:
Jörg Thalheim 2018-02-26 23:12:49 +00:00
parent c2339ed75a
commit a9d7f03051

View File

@ -4,17 +4,16 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "pipework-${version}"; name = "pipework-${version}";
version = "2015-07-30"; version = "2017-08-22";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jpetazzo"; owner = "jpetazzo";
repo = "pipework"; repo = "pipework";
rev = "5a46ecb5f8f933fd268ef315f58a1eb1c46bd93d"; rev = "ae42f1b5fef82b3bc23fe93c95c345e7af65fef3";
sha256 = "02znyg5ir37s8xqjcqqz6xnwyqxapn7c4scyqkcapxr932hf1frh"; sha256 = "0c342m0bpq6ranr7dsxk9qi5mg3j5aw9wv85ql8gprdb2pz59qy8";
}; };
buildInputs = [ makeWrapper ]; buildInputs = [ makeWrapper ];
installPhase = '' installPhase = ''
mkdir -p $out/bin install -D pipework $out/bin/pipework
cp pipework $out/bin
wrapProgram $out/bin/pipework --prefix PATH : \ wrapProgram $out/bin/pipework --prefix PATH : \
${lib.makeBinPath [ bridge-utils iproute lxc openvswitch docker busybox dhcpcd dhcp ]}; ${lib.makeBinPath [ bridge-utils iproute lxc openvswitch docker busybox dhcpcd dhcp ]};
''; '';