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";
|
2022-01-03 16:56:52 +00:00
|
|
|
version = "1.47";
|
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";
|
2022-01-03 16:56:52 +00:00
|
|
|
sha256 = "sha256-hnPH+sqEm2s0dkMy0qqR9y2wW/9zgruDbQaIeVGZw+E=";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|