2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2010-09-26 20:39:42 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-07-27 15:21:24 +01:00
|
|
|
pname = "sg3_utils";
|
2022-01-02 18:52:51 +00:00
|
|
|
version = "1.47";
|
2010-09-26 20:39:42 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-14 11:53:07 +01:00
|
|
|
url = "https://sg.danny.cz/sg/p/sg3_utils-${version}.tgz";
|
2022-01-02 18:52:51 +00:00
|
|
|
sha256 = "sha256-hnPH+sqEm2s0dkMy0qqR9y2wW/9zgruDbQaIeVGZw+E=";
|
2010-09-26 20:39:42 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-08-11 11:46:58 +01:00
|
|
|
homepage = "https://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
|
|
|
};
|
|
|
|
}
|