forked from mirrors/nixpkgs
* hdparm updated to 9.39.
svn path=/nixpkgs/trunk/; revision=32963
This commit is contained in:
parent
92c04c80c7
commit
6bc6c61f01
|
@ -1,19 +1,20 @@
|
|||
{stdenv, fetchurl}:
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "hdparm-8.7";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "hdparm-9.39";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/hdparm/hdparm-8.7.tar.gz;
|
||||
sha256 = "1gbyywsam769fdsgcy2clkfik9h2drad78h1xnh55b9c6fjlacmq";
|
||||
url = "mirror://sourceforge/hdparm/${name}.tar.gz";
|
||||
sha256 = "1siw9c2hrsck47jr9wpip9n677g31qd34y8whkq9dai68npm1mbj";
|
||||
};
|
||||
|
||||
preBuild = "
|
||||
preBuild = ''
|
||||
makeFlagsArray=(sbindir=$out/sbin manprefix=$out)
|
||||
";
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A tool to get/set ATA/SATA drive parameters under Linux";
|
||||
homepage = http://sourceforge.net/projects/hdparm/;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -142,7 +142,6 @@ with (import ./release-lib.nix);
|
|||
hal = linux;
|
||||
hal_info = linux;
|
||||
hddtemp = linux;
|
||||
hdparm = linux;
|
||||
hello = all;
|
||||
host = linux;
|
||||
htmlTidy = all;
|
||||
|
|
Loading…
Reference in a new issue