nixpkgs/pkgs/development/interpreters/gauche/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

79 lines
1.5 KiB
Nix
Raw Normal View History

2024-08-10 07:57:11 +00:00
{
stdenv,
lib,
fetchFromGitHub,
autoreconfHook,
gaucheBootstrap,
pkg-config,
texinfo,
libiconv,
gdbm,
openssl,
zlib,
mbedtls,
cacert,
CoreServices,
}:
2018-05-18 09:45:46 +00:00
stdenv.mkDerivation rec {
pname = "gauche";
2024-08-10 07:57:11 +00:00
version = "0.9.15";
2018-05-18 09:45:46 +00:00
2020-12-11 19:50:37 +00:00
src = fetchFromGitHub {
owner = "shirok";
repo = pname;
rev = "release${lib.replaceStrings [ "." ] [ "_" ] version}";
2024-08-10 07:57:11 +00:00
hash = "sha256-M2vZqTMkob+WxUnCo4NDxS4pCVNleVBqkiiRp9nG/KA=";
2018-05-18 09:45:46 +00:00
};
2024-08-10 07:57:11 +00:00
nativeBuildInputs = [
gaucheBootstrap
pkg-config
texinfo
autoreconfHook
];
2018-05-18 09:45:46 +00:00
2024-08-10 07:57:11 +00:00
buildInputs = [
libiconv
gdbm
openssl
zlib
mbedtls
cacert
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ];
2020-12-11 19:50:37 +00:00
autoreconfPhase = ''
./DIST gen
'';
postPatch = ''
substituteInPlace ext/package-templates/configure \
--replace "#!/usr/bin/env gosh" "#!$out/bin/gosh"
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";
homepage = "https://practical-scheme.net/gauche/";
mainProgram = "gosh";
2018-05-18 09:45:46 +00:00
maintainers = with maintainers; [ mnacamura ];
license = licenses.bsd3;
platforms = platforms.unix;
};
}