nixpkgs/pkgs/os-specific/linux/targetcli/default.nix

28 lines
731 B
Nix
Raw Normal View History

{ lib, python3, fetchFromGitHub }:
2018-06-24 13:54:16 +00:00
python3.pkgs.buildPythonApplication rec {
2018-06-24 13:54:16 +00:00
pname = "targetcli";
2021-03-06 19:00:33 +00:00
version = "2.1.54";
2018-06-24 13:54:16 +00:00
src = fetchFromGitHub {
owner = "open-iscsi";
repo = "${pname}-fb";
rev = "v${version}";
2021-03-06 19:00:33 +00:00
sha256 = "1kbbvx0lba96ynr5iwws9jpi319m4rzph4bmcj7yfb37k8mi161v";
2018-06-24 13:54:16 +00:00
};
propagatedBuildInputs = with python3.pkgs; [ configshell rtslib ];
2018-06-24 13:54:16 +00:00
postInstall = ''
install -D targetcli.8 -t $out/share/man/man8/
2019-11-08 13:13:01 +00:00
install -D targetclid.8 -t $out/share/man/man8/
'';
meta = with lib; {
2018-06-24 13:54:16 +00:00
description = "A command shell for managing the Linux LIO kernel target";
homepage = "https://github.com/open-iscsi/targetcli-fb";
2018-06-24 13:54:16 +00:00
license = licenses.asl20;
platforms = platforms.linux;
};
}