3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/iproute/default.nix

56 lines
1.5 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, flex, bash, bison, db, iptables, pkgconfig, libelf }:
stdenv.mkDerivation rec {
2019-03-22 19:07:17 +00:00
pname = "iproute2";
2019-10-03 20:09:00 +01:00
version = "5.3.0";
2015-02-06 20:51:53 +00:00
src = fetchurl {
2019-03-22 19:07:17 +00:00
url = "mirror://kernel/linux/utils/net/${pname}/${pname}-${version}.tar.xz";
2019-10-03 20:09:00 +01:00
sha256 = "0gvv269wjn4279hxr5zzwsk2c5qgswr47za3hm1x4frsk52iw76b";
};
2014-10-19 23:50:48 +01:00
preConfigure = ''
patchShebangs ./configure
sed -e '/ARPDDIR/d' -i Makefile
# Don't build netem tools--they're not installed and require HOSTCC
substituteInPlace Makefile --replace " netem " " "
2014-10-19 23:50:48 +01:00
'';
2012-10-11 20:38:54 +01:00
2019-10-03 20:09:00 +01:00
outputs = [ "out" "dev" ];
2014-10-19 23:50:48 +01:00
makeFlags = [
"DESTDIR="
"LIBDIR=$(out)/lib"
"SBINDIR=$(out)/sbin"
"MANDIR=$(out)/share/man"
"BASH_COMPDIR=$(out)/share/bash-completion/completions"
2019-03-22 19:07:17 +00:00
"DOCDIR=$(TMPDIR)/share/doc/${pname}" # Don't install docs
"HDRDIR=$(dev)/include/iproute2"
2014-10-19 23:50:48 +01:00
];
2012-10-11 20:38:54 +01:00
buildFlags = [
"CONFDIR=/etc/iproute2"
];
installFlags = [
"CONFDIR=$(out)/etc/iproute2"
];
buildInputs = [ db iptables libelf ];
nativeBuildInputs = [ bison flex pkgconfig ];
2012-10-11 20:38:54 +01:00
enableParallelBuilding = true;
postInstall = ''
PATH=${bash}/bin:$PATH patchShebangs $out/sbin
'';
2014-10-19 23:50:48 +01:00
meta = with stdenv.lib; {
2017-06-20 02:42:51 +01:00
homepage = https://wiki.linuxfoundation.org/networking/iproute2;
2012-10-11 20:38:54 +01:00
description = "A collection of utilities for controlling TCP/IP networking and traffic control in Linux";
2014-10-19 23:50:48 +01:00
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ primeos eelco fpletz globin ];
};
}