summary refs log blame commit diff
path: root/pkgs/os-specific/linux/sdparm/1.02.nix
blob: 5f0ae17e77aa8ff1a347dd0c8e11b639a345ff4b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                 
                                     








                                                                                        
                          


                                                 
                                                                                             



                                
                            

          
args : with args;
	let localDefs = 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 */
	in with localDefs;
stdenv.mkDerivation rec {
	name = "sdparm-"+version;
	builder = writeScript (name + "-builder")
		(textClosure localDefs [doConfigure doMakeInstall doForceShare doPropagate]);
	meta = {
		description = "
	SCSI parameters utility.
";
		inherit src;
	};
}