mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
007f80c1d0
Should eval cleanly, as far as -A tarball tells me. Relevant: issue #2999, issue #739
16 lines
385 B
Nix
16 lines
385 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "sdparm-1.08";
|
|
|
|
src = fetchurl {
|
|
url = http://sg.danny.cz/sg/p/sdparm-1.08.tgz;
|
|
sha256 = "0msy8anggdand1yr50vg2azcfgks7sbfpnqk7xzw9adi2jj7hsrp";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://sg.danny.cz/sg/sdparm.html;
|
|
description = "A utility to access SCSI device parameters";
|
|
license = stdenv.lib.licenses.free;
|
|
};
|
|
}
|