2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-12 14:41:47 +00:00
|
|
|
pname = "sg3_utils";
|
|
|
|
version = "1.46r862";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-22 07:53:02 +00:00
|
|
|
url = "https://sg.danny.cz/sg/p/sg3_utils-${version}.tgz";
|
|
|
|
sha256 = "s2UmU+p3s7Hoe+GFri2q+/3XLBICc+h04cxM86yaAs8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2021-08-12 14:41:47 +00:00
|
|
|
homepage = "https://sg.danny.cz/sg/";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Utilities that send SCSI commands to devices";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = with licenses; [ bsd2 gpl2Plus ];
|
|
|
|
};
|
|
|
|
}
|