nixpkgs/pkgs/os-specific/linux/sdparm/default.nix

19 lines
463 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
2016-04-29 17:38:48 +00:00
stdenv.mkDerivation rec {
pname = "sdparm";
2016-04-29 17:38:48 +00:00
version = "1.10";
src = fetchurl {
url = "http://sg.danny.cz/sg/p/${pname}-${version}.tar.xz";
2016-04-29 17:38:48 +00:00
sha256 = "1jjq3lzgfy4r76rc26q02lv4wm5cb4dx5nh913h489zjrr4f3jbx";
};
meta = with stdenv.lib; {
homepage = http://sg.danny.cz/sg/sdparm.html;
description = "A utility to access SCSI device parameters";
license = licenses.bsd3;
platforms = with platforms; linux;
};
}