depot/third_party/nixpkgs/pkgs/development/interpreters/gauche/boot.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

67 lines
1.3 KiB
Nix

{
stdenv,
lib,
fetchurl,
pkg-config,
texinfo,
libiconv,
gdbm,
openssl,
zlib,
mbedtls,
cacert,
}:
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
];
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;
};
}