depot/third_party/nixpkgs/pkgs/development/interpreters/gauche/boot.nix

72 lines
1.4 KiB
Nix

{
stdenv,
lib,
fetchurl,
pkg-config,
texinfo,
libiconv,
gdbm,
openssl,
zlib,
mbedtls,
cacert,
darwin,
}:
stdenv.mkDerivation rec {
pname = "gauche-bootstrap";
version = "0.9.15";
src = fetchurl {
url = "https://github.com/shirok/Gauche/releases/download/release${
lib.replaceStrings [ "." ] [ "_" ] version
}/Gauche-${version}.tgz";
hash = "sha256-NkPie8fIgiz9b7KJLbGF9ljo42STi8LM/O2yOeNa94M=";
};
nativeBuildInputs = [
pkg-config
texinfo
];
buildInputs =
[
libiconv
gdbm
openssl
zlib
mbedtls
cacert
]
++ lib.optionals (stdenv.hostPlatform.isDarwin) [
darwin.apple_sdk_11_0.frameworks.CoreServices
];
postPatch = ''
patchShebangs .
'';
configureFlags = [
"--with-iconv=${libiconv}"
"--with-dbm=gdbm"
"--with-zlib=${zlib}"
"--with-ca-bundle=${cacert}/etc/ssl/certs/ca-bundle.crt"
# TODO: Enable slib
# Current slib in nixpkgs is specialized to Guile
# "--with-slib=${slibGuile}/lib/slib"
];
enableParallelBuilding = true;
# TODO: Fix tests that fail in sandbox build
doCheck = false;
meta = with lib; {
description = "R7RS Scheme scripting engine (released version)";
homepage = "https://practical-scheme.net/gauche/";
mainProgram = "gosh";
maintainers = with maintainers; [ mnacamura ];
license = licenses.bsd3;
platforms = platforms.unix;
};
}