2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "sg3_utils-1.45";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://sg.danny.cz/sg/p/${name}.tgz";
|
|
|
|
sha256 = "0qasc3qm4i8swjfaywiwpgz76gdxqvm47qycxgmprbsjmxqwk1qb";
|
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "http://sg.danny.cz/sg/";
|
|
|
|
description = "Utilities that send SCSI commands to devices";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = with licenses; [ bsd2 gpl2Plus ];
|
|
|
|
};
|
|
|
|
}
|