depot/third_party/nixpkgs/pkgs/tools/system/sg3_utils/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

17 lines
443 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "sg3_utils-1.45";
src = fetchurl {
url = "http://sg.danny.cz/sg/p/${name}.tgz";
sha256 = "0qasc3qm4i8swjfaywiwpgz76gdxqvm47qycxgmprbsjmxqwk1qb";
};
meta = with stdenv.lib; {
homepage = "http://sg.danny.cz/sg/";
description = "Utilities that send SCSI commands to devices";
platforms = platforms.linux;
license = with licenses; [ bsd2 gpl2Plus ];
};
}