open-isns: 0.100 -> 0.101

+3 -16
+3 -16
pkgs/os-specific/linux/open-isns/default.nix
··· 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" ];
··· 1 + { lib, stdenv, openssl, fetchFromGitHub }: 2 3 stdenv.mkDerivation rec { 4 pname = "open-isns"; 5 + version = "0.101"; 6 7 src = fetchFromGitHub { 8 owner = "open-iscsi"; 9 repo = "open-isns"; 10 rev = "v${version}"; 11 + sha256 = "1g7kp1j2f8afsach6sbl4k05ybz1yz2s8yg073bv4gnv48gyxb2p"; 12 }; 13 14 propagatedBuildInputs = [ openssl ]; 15 outputs = [ "out" "lib" ];