targetcli: 2.1.fb49 -> 2.1.50

* install man page
This commit is contained in:
Markus Kowalewski 2019-08-30 09:29:21 +02:00
parent 7c8f37b24f
commit 220f04fcb4
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB

View file

@ -2,17 +2,21 @@
python.pkgs.buildPythonApplication rec {
pname = "targetcli";
version = "2.1.fb49";
version = "2.1.50";
src = fetchFromGitHub {
owner = "open-iscsi";
repo = "${pname}-fb";
rev = "v${version}";
sha256 = "093dmwc5g6yz4cdgpbfszmc97i7nd286w4x447dvg22hvwvjwqhh";
sha256 = "0xrvby63i39rvi778bnvnxacghaix63q72vzxdc3i87ji1ki58hc";
};
propagatedBuildInputs = with python.pkgs; [ configshell rtslib ];
postInstall = ''
install -D targetcli.8 -t $out/share/man/man8/
'';
meta = with stdenv.lib; {
description = "A command shell for managing the Linux LIO kernel target";
homepage = https://github.com/open-iscsi/targetcli-fb;