mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
hdparm: general improvements
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
parent
95045fba97
commit
941f937481
1 changed files with 7 additions and 7 deletions
|
@ -1,17 +1,18 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "hdparm";
|
||||
version = "9.65";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/hdparm/hdparm-${version}.tar.gz";
|
||||
url = "mirror://sourceforge/hdparm/hdparm-${finalAttrs.version}.tar.gz";
|
||||
sha256 = "sha256-0Ukp+RDQYJMucX6TgkJdR8LnFEI1pTcT1VqU995TWks=";
|
||||
};
|
||||
|
||||
preBuild = ''
|
||||
makeFlagsArray=(sbindir=$out/sbin manprefix=$out)
|
||||
'';
|
||||
makeFlags = [
|
||||
"sbindir=${placeholder "out"}/sbin"
|
||||
"manprefix=${placeholder "out"}"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A tool to get/set ATA/SATA drive parameters under Linux";
|
||||
|
@ -21,5 +22,4 @@ stdenv.mkDerivation rec {
|
|||
mainProgram = "hdparm";
|
||||
maintainers = [ ];
|
||||
};
|
||||
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue