2021-01-25 08:26:54 +00:00
|
|
|
{ lib, python3, fetchFromGitHub }:
|
2018-06-24 14:54:16 +01:00
|
|
|
|
2020-08-13 15:09:48 +01:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2018-06-24 14:54:16 +01:00
|
|
|
pname = "targetcli";
|
2021-03-06 19:00:33 +00:00
|
|
|
version = "2.1.54";
|
2018-06-24 14:54:16 +01: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 14:54:16 +01:00
|
|
|
};
|
|
|
|
|
2020-08-13 15:09:48 +01:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [ configshell rtslib ];
|
2018-06-24 14:54:16 +01:00
|
|
|
|
2019-08-30 08:29:21 +01: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/
|
2019-08-30 08:29:21 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-06-24 14:54:16 +01:00
|
|
|
description = "A command shell for managing the Linux LIO kernel target";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/open-iscsi/targetcli-fb";
|
2018-06-24 14:54:16 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|