2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2010-09-26 20:39:42 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-03-09 22:39:16 +00:00
|
|
|
name = "sg3_utils-1.45";
|
2010-09-26 20:39:42 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://sg.danny.cz/sg/p/${name}.tgz";
|
2020-03-09 22:39:16 +00:00
|
|
|
sha256 = "0qasc3qm4i8swjfaywiwpgz76gdxqvm47qycxgmprbsjmxqwk1qb";
|
2010-09-26 20:39:42 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-09 22:39:16 +00:00
|
|
|
homepage = "http://sg.danny.cz/sg/";
|
2010-09-26 20:39:42 +01:00
|
|
|
description = "Utilities that send SCSI commands to devices";
|
2018-09-12 21:07:50 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = with licenses; [ bsd2 gpl2Plus ];
|
2010-09-26 20:39:42 +01:00
|
|
|
};
|
|
|
|
}
|