nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchurl,
5}:
6
7stdenv.mkDerivation rec {
8 pname = "sg3_utils";
9 version = "1.48";
10
11 src = fetchurl {
12 url = "https://sg.danny.cz/sg/p/sg3_utils-${version}.tgz";
13 sha256 = "sha256-1itsPPIDkPpzVwRDkAhBZtJfHZMqETXEULaf5cKD13M=";
14 };
15
16 meta = with lib; {
17 homepage = "https://sg.danny.cz/sg/";
18 description = "Utilities that send SCSI commands to devices";
19 platforms = platforms.linux;
20 license = with licenses; [
21 bsd2
22 gpl2Plus
23 ];
24 };
25}