mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
b5213d5b0f
* nettools: fix url; avoid gentoo/distfiles which now uses hashed directories * pax-utils: fix url; avoid gentoo/distfiles which now uses hashed directories The project doesn't seem to publish the exact tarball which was relied on, but we can fetch the sources from the original repository. (This implies some rebuilds.) * mtx: fix url; avoid gentoo/distfiles which now uses hashed directories * vlan: fix url; avoid gentoo/distfiles which now uses hashed directories
37 lines
839 B
Nix
37 lines
839 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "net-tools";
|
|
version = "2.10";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-smJDWlJB6Jv6UcPKvVEzdTlS96e3uT8y4Iy52W9YDWk=";
|
|
};
|
|
|
|
preBuild =
|
|
''
|
|
cp ${./config.h} config.h
|
|
'';
|
|
|
|
makeFlags = [
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
"AR=${stdenv.cc.targetPrefix}ar"
|
|
"BASEDIR=$(out)"
|
|
"mandir=/share/man"
|
|
"HAVE_ARP_TOOLS=1"
|
|
"HAVE_PLIP_TOOLS=1"
|
|
"HAVE_SERIAL_TOOLS=1"
|
|
"HAVE_HOSTNAME_TOOLS=1"
|
|
"HAVE_HOSTNAME_SYMLINKS=1"
|
|
"HAVE_MII=1"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "http://net-tools.sourceforge.net/";
|
|
description = "A set of tools for controlling the network subsystem in Linux";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|