summary refs log tree commit diff
path: root/pkgs/os-specific/linux/targetcli/default.nix
blob: b8990484cb983a04af7c2cbc4e7dd0b6d38e5317 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
  };
}