forked from mirrors/nixpkgs
commit
0e518ad8d9
22
pkgs/os-specific/linux/sasutils/default.nix
Normal file
22
pkgs/os-specific/linux/sasutils/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, python3Packages, fetchFromGitHub, sg3_utils }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "sasutils";
|
||||
version = "0.3.12";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "stanford-rc";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0kh5pcc2shdmrvqqi2y1zamzsfvk56pqgwqgqhjfz4r6yfpm04wl";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ sg3_utils ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/stanford-rc/sasutils";
|
||||
description = "A set of command-line tools to ease the administration of Serial Attached SCSI (SAS) fabrics";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ aij ];
|
||||
};
|
||||
}
|
|
@ -23565,6 +23565,8 @@ with pkgs;
|
|||
|
||||
s3ql = callPackage ../tools/backup/s3ql { };
|
||||
|
||||
sasutils = callPackage ../os-specific/linux/sasutils { };
|
||||
|
||||
sass = callPackage ../development/tools/sass { };
|
||||
|
||||
sassc = callPackage ../development/tools/sassc { };
|
||||
|
|
Loading…
Reference in a new issue