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