mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
29 lines
766 B
Nix
29 lines
766 B
Nix
{ lib, python3Packages, fetchFromGitHub, installShellFiles, sg3_utils }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "sasutils";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stanford-rc";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-DK0mEqlPf9UGtUxqbzB0l1xX0P4htYm2NYvV7zilhx0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
propagatedBuildInputs = [ sg3_utils ];
|
|
|
|
postInstall = ''
|
|
installManPage doc/man/man1/*.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/stanford-rc/sasutils";
|
|
description = "Set of command-line tools to ease the administration of Serial Attached SCSI (SAS) fabrics";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ aij ];
|
|
};
|
|
}
|