mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
781666f649
svn path=/nixpkgs/trunk/; revision=34305
12 lines
235 B
Nix
12 lines
235 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ethtool-3.2";
|
|
|
|
src = fetchurl {
|
|
url = mirror://kernel/software/network/ethtool/ethtool-3.2.tar.xz;
|
|
sha256 = "0g9ldaba3vwlsmf490j33y3fgsmpfzxlzzblwashl448f8lcfap7";
|
|
};
|
|
|
|
}
|