3
0
Fork 0
forked from mirrors/nixpkgs

* hdparm updated to 9.39.

svn path=/nixpkgs/trunk/; revision=32963
This commit is contained in:
Eelco Dolstra 2012-03-09 19:24:54 +00:00
parent 92c04c80c7
commit 6bc6c61f01
2 changed files with 8 additions and 8 deletions

View file

@ -1,19 +1,20 @@
{stdenv, fetchurl}: { stdenv, fetchurl }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "hdparm-8.7"; name = "hdparm-9.39";
src = fetchurl { src = fetchurl {
url = mirror://sourceforge/hdparm/hdparm-8.7.tar.gz; url = "mirror://sourceforge/hdparm/${name}.tar.gz";
sha256 = "1gbyywsam769fdsgcy2clkfik9h2drad78h1xnh55b9c6fjlacmq"; sha256 = "1siw9c2hrsck47jr9wpip9n677g31qd34y8whkq9dai68npm1mbj";
}; };
preBuild = " preBuild = ''
makeFlagsArray=(sbindir=$out/sbin manprefix=$out) makeFlagsArray=(sbindir=$out/sbin manprefix=$out)
"; '';
meta = { meta = {
description = "A tool to get/set ATA/SATA drive parameters under Linux"; description = "A tool to get/set ATA/SATA drive parameters under Linux";
homepage = http://sourceforge.net/projects/hdparm/; homepage = http://sourceforge.net/projects/hdparm/;
platforms = stdenv.lib.platforms.linux;
}; };
} }

View file

@ -142,7 +142,6 @@ with (import ./release-lib.nix);
hal = linux; hal = linux;
hal_info = linux; hal_info = linux;
hddtemp = linux; hddtemp = linux;
hdparm = linux;
hello = all; hello = all;
host = linux; host = linux;
htmlTidy = all; htmlTidy = all;