vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / os-specific / linux / net-tools / default.nix
blob3b37ce4b8136e6576de0787e94f654a59ff3be41
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "net-tools";
5   version = "2.10";
7   src = fetchurl {
8     url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.xz";
9     sha256 = "sha256-smJDWlJB6Jv6UcPKvVEzdTlS96e3uT8y4Iy52W9YDWk=";
10   };
12   preBuild =
13     ''
14       cp ${./config.h} config.h
15     '';
17   makeFlags = [
18     "CC=${stdenv.cc.targetPrefix}cc"
19     "AR=${stdenv.cc.targetPrefix}ar"
20     "BASEDIR=$(out)"
21     "mandir=/share/man"
22     "HAVE_ARP_TOOLS=1"
23     "HAVE_PLIP_TOOLS=1"
24     "HAVE_SERIAL_TOOLS=1"
25     "HAVE_HOSTNAME_TOOLS=1"
26     "HAVE_HOSTNAME_SYMLINKS=1"
27     "HAVE_MII=1"
28   ];
30   meta = {
31     homepage = "http://net-tools.sourceforge.net/";
32     description = "Set of tools for controlling the network subsystem in Linux";
33     license = lib.licenses.gpl2Plus;
34     platforms = lib.platforms.linux;
35   };