lib.packagesFromDirectoryRecursive: Improved documentation (#359898)
[NixPkgs.git] / pkgs / by-name / sg / sg3_utils / package.nix
blob3975a5927f475fc456b6a0823f2faa2dbfd085f9
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "sg3_utils";
5   version = "1.48";
7   src = fetchurl {
8     url = "https://sg.danny.cz/sg/p/sg3_utils-${version}.tgz";
9     sha256 = "sha256-1itsPPIDkPpzVwRDkAhBZtJfHZMqETXEULaf5cKD13M=";
10   };
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   };