targetcli: init at 2.1.fb49
This commit is contained in:
parent
699e72968c
commit
5294194fe2
22
pkgs/os-specific/linux/targetcli/default.nix
Normal file
22
pkgs/os-specific/linux/targetcli/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, python, fetchFromGitHub }:
|
||||
|
||||
python.pkgs.buildPythonApplication rec {
|
||||
pname = "targetcli";
|
||||
version = "2.1.fb49";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "open-iscsi";
|
||||
repo = "${pname}-fb";
|
||||
rev = "v${version}";
|
||||
sha256 = "093dmwc5g6yz4cdgpbfszmc97i7nd286w4x447dvg22hvwvjwqhh";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python.pkgs; [ configshell rtslib ];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -5634,6 +5634,8 @@ with pkgs;
|
||||
|
||||
znapzend = callPackage ../tools/backup/znapzend { };
|
||||
|
||||
targetcli = callPackage ../os-specific/linux/targetcli { };
|
||||
|
||||
tarsnap = callPackage ../tools/backup/tarsnap { };
|
||||
|
||||
tarsnapper = callPackage ../tools/backup/tarsnapper { };
|
||||
|
Loading…
Reference in New Issue
Block a user