Add sg3_utils
svn path=/nixpkgs/trunk/; revision=23949
This commit is contained in:
parent
74abd6e9ad
commit
cb623539b0
17
pkgs/tools/system/sg3_utils/default.nix
Normal file
17
pkgs/tools/system/sg3_utils/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sg3_utils-1.29";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://sg.danny.cz/sg/p/${name}.tgz";
|
||||
sha256 = "0d1vlijp9y4n3c0sm0zzba38ad87b5v6nh3prgd8sfwvy79720fi";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://sg.danny.cz/sg/;
|
||||
description = "Utilities that send SCSI commands to devices";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||
};
|
||||
}
|
@ -1124,6 +1124,8 @@ let
|
||||
inherit groff;
|
||||
};
|
||||
|
||||
sg3_utils = callPackage ../tools/system/sg3_utils { };
|
||||
|
||||
sharutils = callPackage ../tools/archivers/sharutils { };
|
||||
|
||||
shebangfix = callPackage ../tools/misc/shebangfix { };
|
||||
|
Loading…
Reference in New Issue
Block a user