4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, darwin, python2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.2.1";
|
|
pname = "iproute2mac";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "brona";
|
|
repo = "iproute2mac";
|
|
rev = "v${version}";
|
|
sha256 = "1n6la7blbxza2m79cpnywsavhzsdv4gzdxrkly4dppyidjg6jy1h";
|
|
};
|
|
|
|
buildInputs = [ python2 ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/ip.py \
|
|
--replace /usr/bin/python ${python2}/bin/python \
|
|
--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
|
|
'';
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
install -D -m 755 src/ip.py $out/bin/ip
|
|
'';
|
|
|
|
meta = with lib; {
|
|
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.";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ flokli ];
|
|
platforms = platforms.darwin;
|
|
};
|
|
}
|