mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 07:14:52 +00:00
darwin.iproute2mac: 1.4.1 -> 1.5.4 (#361283)
This commit is contained in:
commit
79abb3b137
@ -1,37 +1,55 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, darwin, python3 }:
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
fetchFromGitHub,
|
||||||
|
darwin,
|
||||||
|
makeWrapper,
|
||||||
|
python3,
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.4.1";
|
version = "1.5.4";
|
||||||
pname = "iproute2mac";
|
pname = "iproute2mac";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "brona";
|
owner = "brona";
|
||||||
repo = "iproute2mac";
|
repo = "iproute2mac";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-MaL8eb9UOZ71BL4Jvc6Od+EJ+F6j96n9a+vRnHeveIU=";
|
hash = "sha256-hmSqJ2gc0DOXUuFrp1ZG8usjFdo07zjV/1JLs5r/E04=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
buildInputs = [ python3 ];
|
buildInputs = [ python3 ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace src/ip.py \
|
substituteInPlace src/iproute2mac.py \
|
||||||
--replace /sbin/ifconfig ${darwin.network_cmds}/bin/ifconfig \
|
--replace-fail /sbin/ifconfig ${darwin.network_cmds}/bin/ifconfig \
|
||||||
--replace /sbin/route ${darwin.network_cmds}/bin/route \
|
--replace-fail /sbin/route ${darwin.network_cmds}/bin/route \
|
||||||
--replace /usr/sbin/netstat ${darwin.network_cmds}/bin/netstat \
|
--replace-fail /usr/sbin/netstat ${darwin.network_cmds}/bin/netstat \
|
||||||
--replace /usr/sbin/ndp ${darwin.network_cmds}/bin/ndp \
|
--replace-fail /usr/sbin/ndp ${darwin.network_cmds}/bin/ndp \
|
||||||
--replace /usr/sbin/arp ${darwin.network_cmds}/bin/arp \
|
--replace-fail /usr/sbin/arp ${darwin.network_cmds}/bin/arp \
|
||||||
--replace /usr/sbin/networksetup ${darwin.network_cmds}/bin/networksetup
|
--replace-fail /usr/sbin/networksetup ${darwin.network_cmds}/bin/networksetup
|
||||||
'';
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/bin
|
|
||||||
install -D -m 755 src/ip.py $out/bin/ip
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
mkdir -p $out/bin $out/libexec
|
||||||
|
install -D -m 755 src/iproute2mac.py $out/libexec/iproute2mac.py
|
||||||
|
install -D -m 755 src/ip.py $out/libexec/ip
|
||||||
|
install -D -m 755 src/bridge.py $out/libexec/bridge
|
||||||
|
makeWrapper $out/libexec/ip $out/bin/ip
|
||||||
|
makeWrapper $out/libexec/bridge $out/bin/bridge
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
homepage = "https://github.com/brona/iproute2mac";
|
homepage = "https://github.com/brona/iproute2mac";
|
||||||
description = "CLI wrapper for basic network utilites on Mac OS X inspired with iproute2 on Linux systems - ip command";
|
description = "CLI wrapper for basic network utilites on Mac OS X inspired with iproute2 on Linux systems - ip command";
|
||||||
license = licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with maintainers; [ jiegec ];
|
maintainers = with lib.maintainers; [ jiegec ];
|
||||||
platforms = platforms.darwin;
|
platforms = lib.platforms.darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user