3
0
Fork 0
forked from mirrors/nixpkgs

Making iftop build on the fuloong (config.guess.)

svn path=/nixpkgs/branches/stdenv-updates/; revision=24036
This commit is contained in:
Lluís Batlle i Rossell 2010-10-03 09:18:55 +00:00
parent 5032b693b2
commit bb0351b562

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, ncurses, libpcap}:
{stdenv, fetchurl, ncurses, libpcap, automake}:
stdenv.mkDerivation rec {
name = "iftop-0.17";
@ -8,6 +8,10 @@ stdenv.mkDerivation rec {
sha256 = "1b0fis53280qx85gldhmqfcpgyiwplzg43gxyngia1w3f1y58cnh";
};
preConfigure = ''
cp ${automake}/share/automake*/config.{sub,guess} config
'';
buildInputs = [ncurses libpcap];
meta = {