3
0
Fork 0
forked from mirrors/nixpkgs

* added ethtool 6

svn path=/nixpkgs/trunk/; revision=17346
This commit is contained in:
Rob Vermaas 2009-09-22 08:37:41 +00:00
parent a9d801d645
commit cce34a0779
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ethtool-6";
src = fetchurl {
url = mirror://sourceforge/gkernel/ethtool/6/ethtool-6.tar.gz;
sha256 = "1iml9w4lrrxsg366wzdkw1wnrydpyah0lprwqf4zcxyxwxrzaijh";
};
}

View file

@ -671,6 +671,10 @@ let
};
};
ethtool = import ../tools/misc/ethtool {
inherit fetchurl stdenv;
};
exif = import ../tools/graphics/exif {
inherit fetchurl stdenv pkgconfig libexif popt;
};