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

28 lines
739 B
Nix
Raw Normal View History

{ lib, stdenv, python3, fetchFromGitHub }:
2018-06-24 13:54:16 +00:00
python3.pkgs.buildPythonApplication rec {
2018-06-24 13:54:16 +00:00
pname = "targetcli";
2020-06-30 16:35:09 +00:00
version = "2.1.53";
2018-06-24 13:54:16 +00:00
src = fetchFromGitHub {
owner = "open-iscsi";
repo = "${pname}-fb";
rev = "v${version}";
2020-06-30 16:35:09 +00:00
sha256 = "1qrq7y5hnghzbxgrxgl153n8jlhw31kqjbr93jsvlvhz5b3ci750";
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;
};
}