Merge pull request #177804 from trofi/update-openiscsi

openiscsi: 2.1.4 -> 2.1.7

authored by Sergei Trofimovich and committed by GitHub d1b0daca 5041c1bd

+11 -2
+11 -2
pkgs/os-specific/linux/open-iscsi/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "open-iscsi"; 7 - version = "2.1.4"; 7 + version = "2.1.7"; 8 8 9 9 nativeBuildInputs = [ autoconf automake gettext libtool perl pkgconf ]; 10 10 buildInputs = [ kmod open-isns.lib openssl systemd util-linux ]; ··· 13 13 owner = "open-iscsi"; 14 14 repo = "open-iscsi"; 15 15 rev = version; 16 - sha256 = "sha256-HnvLLwxOnu7Oiige6A6zk9NmAI2ImcILp9eCfbdGiyI="; 16 + sha256 = "sha256-R1ttHHxVSQ5TGtWVy4I9BAmEJfcRhKRD5jThoeddjUw="; 17 17 }; 18 18 19 19 DESTDIR = "$(out)"; ··· 23 23 24 24 preConfigure = '' 25 25 sed -i 's|/usr|/|' Makefile 26 + 27 + # Remove blanket -Werror. Fails for minor error on gcc-11. 28 + substituteInPlace usr/Makefile --replace ' -Werror ' ' ' 26 29 ''; 30 + 31 + # avoid /usr/bin/install 32 + makeFlags = [ 33 + "INSTALL=install" 34 + "SED=sed" 35 + ]; 27 36 28 37 installFlags = [ 29 38 "install"