nixpkgs/pkgs/by-name/sg/sg3_utils/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
471 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "sg3_utils";
2023-08-25 22:05:38 +00:00
version = "1.48";
src = fetchurl {
url = "https://sg.danny.cz/sg/p/sg3_utils-${version}.tgz";
2023-08-25 22:05:38 +00:00
sha256 = "sha256-1itsPPIDkPpzVwRDkAhBZtJfHZMqETXEULaf5cKD13M=";
};
meta = with lib; {
2021-08-11 10:46:58 +00:00
homepage = "https://sg.danny.cz/sg/";
description = "Utilities that send SCSI commands to devices";
2018-09-12 20:07:50 +00:00
platforms = platforms.linux;
license = with licenses; [ bsd2 gpl2Plus ];
};
}