nixpkgs/pkgs/tools/system/sg3_utils/default.nix

18 lines
441 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2016-11-01 21:00:03 +00:00
name = "sg3_utils-1.42";
src = fetchurl {
url = "http://sg.danny.cz/sg/p/${name}.tgz";
2016-11-01 21:00:03 +00:00
sha256 = "1wwy7iiz1lvc32c777yd4vp0c0dqfdlm5jrsm3aa62xx141pmjqx";
};
2018-09-12 20:07:50 +00:00
meta = with stdenv.lib; {
homepage = http://sg.danny.cz/sg/;
description = "Utilities that send SCSI commands to devices";
2018-09-12 20:07:50 +00:00
platforms = platforms.linux;
license = with licenses; [ bsd2 gpl2Plus ];
};
}