2022-06-24 03:16:45 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, darwin, python3 }:
|
2018-06-09 20:13:01 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2022-09-19 01:27:43 +00:00
|
|
|
version = "1.4.1";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "iproute2mac";
|
2018-06-09 20:13:01 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "brona";
|
|
|
|
repo = "iproute2mac";
|
|
|
|
rev = "v${version}";
|
2022-09-19 01:27:43 +00:00
|
|
|
sha256 = "sha256-MaL8eb9UOZ71BL4Jvc6Od+EJ+F6j96n9a+vRnHeveIU=";
|
2018-06-09 20:13:01 +00:00
|
|
|
};
|
|
|
|
|
2022-06-24 03:16:45 +00:00
|
|
|
buildInputs = [ python3 ];
|
2018-06-09 20:13:01 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
2018-06-09 21:12:16 +00:00
|
|
|
substituteInPlace src/ip.py \
|
|
|
|
--replace /sbin/ifconfig ${darwin.network_cmds}/bin/ifconfig \
|
|
|
|
--replace /sbin/route ${darwin.network_cmds}/bin/route \
|
|
|
|
--replace /usr/sbin/netstat ${darwin.network_cmds}/bin/netstat \
|
|
|
|
--replace /usr/sbin/ndp ${darwin.network_cmds}/bin/ndp \
|
|
|
|
--replace /usr/sbin/arp ${darwin.network_cmds}/bin/arp \
|
|
|
|
--replace /usr/sbin/networksetup ${darwin.network_cmds}/bin/networksetup
|
2018-06-09 20:13:01 +00:00
|
|
|
'';
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
install -D -m 755 src/ip.py $out/bin/ip
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/brona/iproute2mac";
|
2018-06-09 20:13:01 +00:00
|
|
|
description = "CLI wrapper for basic network utilites on Mac OS X inspired with iproute2 on Linux systems - ip command";
|
|
|
|
license = licenses.mit;
|
2022-06-24 03:16:45 +00:00
|
|
|
maintainers = with maintainers; [ jiegec ];
|
2018-06-09 20:13:01 +00:00
|
|
|
platforms = platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|