Merge pull request #42919 from mnacamura/gauche

gauche: 0.9.5 -> 0.9.6

authored by

Silvan Mosberger and committed by
GitHub
4180cdf6 a41ba1bb

+11 -5
+11 -5
pkgs/development/interpreters/gauche/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, texinfo, libiconv, gdbm, openssl, zlib }: 1 + { stdenv, fetchurl, pkgconfig, texinfo, libiconv, gdbm, openssl, zlib 2 + , mbedtls, cacert 3 + }: 2 4 3 5 stdenv.mkDerivation rec { 4 6 name = "gauche-${version}"; 5 - version = "0.9.5"; 7 + version = "0.9.6"; 6 8 7 9 src = fetchurl { 8 10 url = "mirror://sourceforge/gauche/Gauche-${version}.tgz"; 9 - sha256 = "0g77nik15whm5frxb7l0pwzd95qlq949dym5pn5p04p17lhm72jc"; 11 + sha256 = "1bwwwvyxsrp2a4cfib6hn0hcgwzmp2znylm088w09f331miji2fd"; 10 12 }; 11 13 12 14 nativeBuildInputs = [ pkgconfig texinfo ]; 13 15 14 - buildInputs = [ libiconv gdbm openssl zlib ]; 16 + buildInputs = [ libiconv gdbm openssl zlib mbedtls cacert ]; 17 + 18 + postPatch = '' 19 + patchShebangs . 20 + ''; 15 21 16 22 configureFlags = [ 17 - "--enable-multibyte=utf-8" 18 23 "--with-iconv=${libiconv}" 19 24 "--with-dbm=gdbm" 20 25 "--with-zlib=${zlib}" 26 + "--with-ca-bundle=$SSL_CERT_FILE" 21 27 # TODO: Enable slib 22 28 # Current slib in nixpkgs is specialized to Guile 23 29 # "--with-slib=${slibGuile}/lib/slib"