nixpkgs/pkgs/os-specific/linux/sdparm/default.nix
Tobias Geerinckx-Rice 158e1cfdd0 Don't use "with licenses;" for single licences
And don't use square brackets on such lines.
2015-05-28 19:20:29 +02:00

18 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 ];
};
}