lol
1{ lib, stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 pname = "sg3_utils";
5 version = "1.48";
6
7 src = fetchurl {
8 url = "https://sg.danny.cz/sg/p/sg3_utils-${version}.tgz";
9 sha256 = "sha256-1itsPPIDkPpzVwRDkAhBZtJfHZMqETXEULaf5cKD13M=";
10 };
11
12 meta = with lib; {
13 homepage = "https://sg.danny.cz/sg/";
14 description = "Utilities that send SCSI commands to devices";
15 platforms = platforms.linux;
16 license = with licenses; [ bsd2 gpl2Plus ];
17 };
18}