2020-12-11 19:50:37 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, autoreconfHook, gaucheBootstrap, pkg-config, texinfo
|
2023-11-30 04:20:00 +00:00
|
|
|
, libiconv, gdbm, openssl, zlib, mbedtls, cacert, CoreServices }:
|
2018-05-18 09:45:46 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gauche";
|
2023-11-30 04:20:00 +00:00
|
|
|
version = "0.9.13";
|
2018-05-18 09:45:46 +00:00
|
|
|
|
2020-12-11 19:50:37 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shirok";
|
|
|
|
repo = pname;
|
2022-12-12 01:36:03 +00:00
|
|
|
rev = "release${lib.replaceStrings [ "." ] [ "_" ] version}";
|
2023-11-30 04:20:00 +00:00
|
|
|
hash = "sha256-XD4zJzCktGi/E9sA6BVm9JVQBVrG5119EjZNbP1pVJU=";
|
2018-05-18 09:45:46 +00:00
|
|
|
};
|
|
|
|
|
2020-12-11 19:50:37 +00:00
|
|
|
nativeBuildInputs = [ gaucheBootstrap pkg-config texinfo autoreconfHook ];
|
2018-05-18 09:45:46 +00:00
|
|
|
|
2023-11-30 04:20:00 +00:00
|
|
|
buildInputs = [ libiconv gdbm openssl zlib mbedtls cacert ] ++ lib.optionals stdenv.isDarwin [ CoreServices ];
|
2018-07-03 14:04:01 +00:00
|
|
|
|
2020-12-11 19:50:37 +00:00
|
|
|
autoreconfPhase = ''
|
|
|
|
./DIST gen
|
|
|
|
'';
|
|
|
|
|
2018-07-03 14:04:01 +00:00
|
|
|
postPatch = ''
|
2024-05-07 09:36:55 +00:00
|
|
|
substituteInPlace ext/package-templates/configure \
|
|
|
|
--replace "#!/usr/bin/env gosh" "#!$out/bin/gosh"
|
2018-07-03 14:04:01 +00:00
|
|
|
patchShebangs .
|
|
|
|
'';
|
2018-05-18 09:45:46 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-iconv=${libiconv}"
|
|
|
|
"--with-dbm=gdbm"
|
|
|
|
"--with-zlib=${zlib}"
|
2020-06-19 15:33:06 +00:00
|
|
|
"--with-ca-bundle=${cacert}/etc/ssl/certs/ca-bundle.crt"
|
2018-05-18 09:45:46 +00:00
|
|
|
# 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;
|
|
|
|
|
2020-12-11 19:50:37 +00:00
|
|
|
meta = with lib; {
|
2018-05-18 09:45:46 +00:00
|
|
|
description = "R7RS Scheme scripting engine";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://practical-scheme.net/gauche/";
|
2024-03-11 21:53:08 +00:00
|
|
|
mainProgram = "gosh";
|
2018-05-18 09:45:46 +00:00
|
|
|
maintainers = with maintainers; [ mnacamura ];
|
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|