Bumped Guile version by applying patch by Ludovic Cuort\`es. Added sdparm.

svn path=/nixpkgs/trunk/; revision=9910
This commit is contained in:
Michael Raskin
2007-12-11 20:48:52 +00:00
parent 893dbfdbbc
commit 306ae4b8b4
3 changed files with 32 additions and 3 deletions
+21
View File
@@ -0,0 +1,21 @@
args : with args;
with builderDefs {
src = /* put a fetchurl here */
fetchurl {
url = http://sg.torque.net/sg/p/sdparm-1.02.tgz;
sha256 = "13acyg6r65gypdprjhfkmvaykgfcj1riwpnycpvv9znzgq9fxsiv";
};
buildInputs = [];
configureFlags = [];
} null; /* null is a terminator for sumArgs */
stdenv.mkDerivation rec {
name = "sdparm-"+version;
builder = writeScript (name + "-builder")
(textClosure [doConfigure doMakeInstall doForceShare doPropagate]);
meta = {
description = "
SCSI parameters utility.
";
};
}