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

28 lines
736 B
Nix
Raw Normal View History

2018-06-24 13:54:16 +00:00
{ stdenv, python, fetchFromGitHub }:
python.pkgs.buildPythonApplication rec {
pname = "targetcli";
2019-11-08 13:13:01 +00:00
version = "2.1.51";
2018-06-24 13:54:16 +00:00
src = fetchFromGitHub {
owner = "open-iscsi";
repo = "${pname}-fb";
rev = "v${version}";
2019-11-08 13:13:01 +00:00
sha256 = "07i9kyr525hlk32amzgycirwgwykdbjy5fmw6ji0nnhvk2jh4arn";
2018-06-24 13:54:16 +00:00
};
propagatedBuildInputs = with python.pkgs; [ configshell rtslib ];
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/
'';
2018-06-24 13:54:16 +00:00
meta = with stdenv.lib; {
description = "A command shell for managing the Linux LIO kernel target";
homepage = https://github.com/open-iscsi/targetcli-fb;
license = licenses.asl20;
platforms = platforms.linux;
};
}