1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/sdparm/default.nix

20 lines
507 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
2016-04-29 18:38:48 +01:00
stdenv.mkDerivation rec {
name = "sdparm-${version}";
version = "1.10";
src = fetchurl {
2016-04-29 18:38:48 +01:00
url = "http://sg.danny.cz/sg/p/${name}.tar.xz";
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;
maintainers = with maintainers; [ nckx ];
platforms = with platforms; linux;
};
}