summary refs log tree commit diff
path: root/pkgs/os-specific/linux/sdparm/1.02.nix
blob: 068da9830d38c4429053578ec41d02afa471c2f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
args : with args;
	let localDefs = builderDefs.passthru.function {
		src = /* put a fetchurl here */
		fetchurl {
			url = http://sg.torque.net/sg/p/sdparm-1.02.tgz;
			sha256 = "13acyg6r65gypdprjhfkmvaykgfcj1riwpnycpvv9znzgq9fxsiv";
		};

		buildInputs = [];
		configureFlags = [];
	};
	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;
	};
}