targetcli: 2.1.56 -> 2.1.57
This commit is contained in:
parent
f68af858f4
commit
b377df37ca
1 changed files with 7 additions and 3 deletions
|
@ -1,14 +1,14 @@
|
|||
{ lib, python3, fetchFromGitHub }:
|
||||
{ lib, python3, fetchFromGitHub, nixosTests }:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "targetcli";
|
||||
version = "2.1.56";
|
||||
version = "2.1.57";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "open-iscsi";
|
||||
repo = "${pname}-fb";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-sWLwjfuy9WPnrGK0BxUGnNrhtGDoQyRFMY1OSlyxqs4=";
|
||||
hash = "sha256-7JRNHKku9zTeSafL327hkM/E5EWTKqwPudCfmngvWuo=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [ configshell rtslib ];
|
||||
|
@ -18,6 +18,10 @@ python3.pkgs.buildPythonApplication rec {
|
|||
install -D targetclid.8 -t $out/share/man/man8/
|
||||
'';
|
||||
|
||||
passthru.tests = {
|
||||
inherit (nixosTests) iscsi-root;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A command shell for managing the Linux LIO kernel target";
|
||||
homepage = "https://github.com/open-iscsi/targetcli-fb";
|
||||
|
|
Loading…
Reference in a new issue