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