Merge pull request #111009 from markuskowa/upd-isns

open-isns: 0.99 -> 0.100

authored by markuskowa and committed by GitHub e29bef4b 624b5608

+26 -11
+2 -2
pkgs/os-specific/linux/open-iscsi/default.nix
··· 1 { lib, stdenv, fetchFromGitHub, automake, autoconf, libtool, gettext 2 - , util-linux, openisns, openssl, kmod, perl, systemd, pkgconf 3 }: 4 5 stdenv.mkDerivation rec { ··· 7 version = "2.1.3"; 8 9 nativeBuildInputs = [ autoconf automake gettext libtool perl pkgconf ]; 10 - buildInputs = [ kmod openisns.lib openssl systemd util-linux ]; 11 12 src = fetchFromGitHub { 13 owner = "open-iscsi";
··· 1 { lib, stdenv, fetchFromGitHub, automake, autoconf, libtool, gettext 2 + , util-linux, open-isns, openssl, kmod, perl, systemd, pkgconf 3 }: 4 5 stdenv.mkDerivation rec { ··· 7 version = "2.1.3"; 8 9 nativeBuildInputs = [ autoconf automake gettext libtool perl pkgconf ]; 10 + buildInputs = [ kmod open-isns.lib openssl systemd util-linux ]; 11 12 src = fetchFromGitHub { 13 owner = "open-iscsi";
+22 -8
pkgs/os-specific/linux/open-isns/default.nix
··· 1 - { lib, stdenv, openssl, fetchFromGitHub }: 2 3 stdenv.mkDerivation rec { 4 pname = "open-isns"; 5 - version = "0.99"; 6 7 src = fetchFromGitHub { 8 - owner = "gonzoleeman"; 9 repo = "open-isns"; 10 rev = "v${version}"; 11 - sha256 = "0m294aiv80rkihacw5094093pc0kd5bkbxqgs6i32jsglxy33hvf"; 12 }; 13 14 propagatedBuildInputs = [ openssl ]; 15 outputs = [ "out" "lib" ]; 16 outputInclude = "lib"; ··· 20 installFlags = [ "etcdir=$(out)/etc" "vardir=$(out)/var/lib/isns" ]; 21 installTargets = [ "install" "install_hdrs" "install_lib" ]; 22 23 - meta = { 24 description = "iSNS server and client for Linux"; 25 - license = lib.licenses.lgpl21; 26 - homepage = "https://github.com/gonzoleeman/open-isns"; 27 - platforms = lib.platforms.linux; 28 }; 29 }
··· 1 + { lib, stdenv, openssl, fetchFromGitHub, fetchpatch }: 2 3 stdenv.mkDerivation rec { 4 pname = "open-isns"; 5 + version = "0.100"; 6 7 src = fetchFromGitHub { 8 + owner = "open-iscsi"; 9 repo = "open-isns"; 10 rev = "v${version}"; 11 + sha256 = "0d0dz965azsisvfl5wpp1b7m0q0fmaz5r7x5dfybkry551sbcydr"; 12 }; 13 14 + patches = [ 15 + (fetchpatch { 16 + name = "deprecated-sighold-sigrelease"; 17 + url = "https://github.com/open-iscsi/open-isns/commit/e7dac76ce61039fefa58985c955afccb60dabe87.patch"; 18 + sha256 = "15v106xn3ns7z4nlpby7kkm55rm9qncsmy2iqc4ifli0h67g34id"; 19 + }) 20 + (fetchpatch { 21 + name = "warn_unused_result"; 22 + url = "https://github.com/open-iscsi/open-isns/commit/4c39cb09735a494099fba0474d25ff26800de952.patch"; 23 + sha256 = "1jlydrh9rgkky698jv0mp2wbbizn90q5wjbay086l0h6iqp8ibc3"; 24 + }) 25 + ]; 26 + 27 propagatedBuildInputs = [ openssl ]; 28 outputs = [ "out" "lib" ]; 29 outputInclude = "lib"; ··· 33 installFlags = [ "etcdir=$(out)/etc" "vardir=$(out)/var/lib/isns" ]; 34 installTargets = [ "install" "install_hdrs" "install_lib" ]; 35 36 + meta = with lib; { 37 description = "iSNS server and client for Linux"; 38 + license = licenses.lgpl21Only; 39 + homepage = "https://github.com/open-iscsi/open-isns"; 40 + platforms = platforms.linux; 41 + maintainers = [ maintainers.markuskowa ]; 42 }; 43 }
+1
pkgs/top-level/aliases.nix
··· 412 oblogout = throw "oblogout has been removed from nixpkgs, as it's archived upstream."; # added 2019-12-10 413 opencl-icd = ocl-icd; # added 2017-01-20 414 openexr_ctl = ctl; # added 2018-04-25 415 openjpeg_1 = throw "openjpeg_1 has been removed, use openjpeg_2 instead"; # added 2021-01-24 416 openjpeg_2 = openjpeg; # added 2021-01-25 417 opensans-ttf = open-sans; # added 2018-12-04
··· 412 oblogout = throw "oblogout has been removed from nixpkgs, as it's archived upstream."; # added 2019-12-10 413 opencl-icd = ocl-icd; # added 2017-01-20 414 openexr_ctl = ctl; # added 2018-04-25 415 + openisns = open-isns; # added 2020-01-28 416 openjpeg_1 = throw "openjpeg_1 has been removed, use openjpeg_2 instead"; # added 2021-01-24 417 openjpeg_2 = openjpeg; # added 2021-01-25 418 opensans-ttf = open-sans; # added 2018-12-04
+1 -1
pkgs/top-level/all-packages.nix
··· 18858 18859 openiscsi = callPackage ../os-specific/linux/open-iscsi { }; 18860 18861 - openisns = callPackage ../os-specific/linux/open-isns { }; 18862 18863 osx-cpu-temp = callPackage ../os-specific/darwin/osx-cpu-temp { 18864 inherit (pkgs.darwin.apple_sdk.frameworks) IOKit;
··· 18858 18859 openiscsi = callPackage ../os-specific/linux/open-iscsi { }; 18860 18861 + open-isns = callPackage ../os-specific/linux/open-isns { }; 18862 18863 osx-cpu-temp = callPackage ../os-specific/darwin/osx-cpu-temp { 18864 inherit (pkgs.darwin.apple_sdk.frameworks) IOKit;