at v206 24 lines 617 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "net-tools-1.60_p20120127084908"; 5 6 src = fetchurl { 7 url = "mirror://gentoo/distfiles/${name}.tar.xz"; 8 sha256 = "408a51964aa142a4f45c4cffede2478abbd5630a7c7346ba0d3611059a2a3c94"; 9 }; 10 11 preBuild = 12 '' 13 cp ${./config.h} config.h 14 ''; 15 16 makeFlags = "BASEDIR=$(out) mandir=/share/man"; 17 18 meta = { 19 homepage = http://www.tazenda.demon.co.uk/phil/net-tools/; 20 description = "A set of tools for controlling the network subsystem in Linux"; 21 license = stdenv.lib.licenses.gpl2Plus; 22 platforms = stdenv.lib.platforms.linux; 23 }; 24}