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";
|
2023-10-09 19:29:22 +00:00
|
|
|
version = "1.48";
|
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";
|
2023-10-09 19:29:22 +00:00
|
|
|
sha256 = "sha256-1itsPPIDkPpzVwRDkAhBZtJfHZMqETXEULaf5cKD13M=";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|