16 stdenv.mkDerivation rec {
17 pname = "gauche-bootstrap";
21 url = "https://github.com/shirok/Gauche/releases/download/release${
22 lib.replaceStrings [ "." ] [ "_" ] version
23 }/Gauche-${version}.tgz";
24 hash = "sha256-NkPie8fIgiz9b7KJLbGF9ljo42STi8LM/O2yOeNa94M=";
41 ++ lib.optionals (stdenv.isDarwin) [
42 darwin.apple_sdk_11_0.frameworks.CoreServices
50 "--with-iconv=${libiconv}"
53 "--with-ca-bundle=${cacert}/etc/ssl/certs/ca-bundle.crt"
55 # Current slib in nixpkgs is specialized to Guile
56 # "--with-slib=${slibGuile}/lib/slib"
59 enableParallelBuilding = true;
61 # TODO: Fix tests that fail in sandbox build
65 description = "R7RS Scheme scripting engine (released version)";
66 homepage = "https://practical-scheme.net/gauche/";
68 maintainers = with maintainers; [ mnacamura ];
69 license = licenses.bsd3;
70 platforms = platforms.unix;