Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
797 B
Nix
36 lines
797 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
sg3_utils,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "sasutils";
|
|
version = "0.6.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stanford-rc";
|
|
repo = "sasutils";
|
|
tag = "v${version}";
|
|
sha256 = "sha256-rx4IxS5q1c3z617F4DBWxuxxSPHKFrw2bTW6b6/qkds=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|