mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
158e1cfdd0
And don't use square brackets on such lines.
17 lines
440 B
Nix
17 lines
440 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "sdparm-1.09";
|
|
|
|
src = fetchurl {
|
|
url = http://sg.danny.cz/sg/p/sdparm-1.09.tar.xz;
|
|
sha256 = "0jakqyjwi72zqjzss04bally0xl0lc4710mx8da08vpmir1hfphg";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://sg.danny.cz/sg/sdparm.html;
|
|
description = "A utility to access SCSI device parameters";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|