summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2023-11-08 20:35:23 +0300
committerajs124 <git@ajs124.de>2023-11-08 20:35:23 +0300
commitb377df37ca1abf0dfedf0f1f2a38c73bfd58b6f6 (patch)
treec88f58e7e521a69ac79e207e1cbcd08857117638 /pkgs/os-specific/linux
parentf68af858f46655646b00be1c16ebf38f78db6162 (diff)
downloadnixpkgs-b377df37ca1abf0dfedf0f1f2a38c73bfd58b6f6.tar
nixpkgs-b377df37ca1abf0dfedf0f1f2a38c73bfd58b6f6.tar.gz
nixpkgs-b377df37ca1abf0dfedf0f1f2a38c73bfd58b6f6.tar.bz2
nixpkgs-b377df37ca1abf0dfedf0f1f2a38c73bfd58b6f6.tar.lz
nixpkgs-b377df37ca1abf0dfedf0f1f2a38c73bfd58b6f6.tar.xz
nixpkgs-b377df37ca1abf0dfedf0f1f2a38c73bfd58b6f6.tar.zst
nixpkgs-b377df37ca1abf0dfedf0f1f2a38c73bfd58b6f6.zip
targetcli: 2.1.56 -> 2.1.57
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/targetcli/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/targetcli/default.nix b/pkgs/os-specific/linux/targetcli/default.nix
index 381a1500662..f6bb705258f 100644
--- a/pkgs/os-specific/linux/targetcli/default.nix
+++ b/pkgs/os-specific/linux/targetcli/default.nix
@@ -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";