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

51 lines
1.3 KiB
Nix
Raw Normal View History

2020-12-11 11:50:37 -08:00
{ stdenv, lib, fetchFromGitHub, autoreconfHook, gaucheBootstrap, pkg-config, texinfo
2021-01-30 19:06:08 -08:00
, libiconv, gdbm, openssl, zlib, mbedtls, cacert }:
2018-05-18 02:45:46 -07:00
stdenv.mkDerivation rec {
pname = "gauche";
2020-12-11 11:50:37 -08:00
version = "0.9.10";
2018-05-18 02:45:46 -07:00
2020-12-11 11:50:37 -08:00
src = fetchFromGitHub {
owner = "shirok";
repo = pname;
rev = "release${lib.replaceChars [ "." ] [ "_" ] version}";
sha256 = "0ki1w7sa10ivmg51sqjskby0gsznb0d3738nz80x589033km5hmb";
2018-05-18 02:45:46 -07:00
};
2020-12-11 11:50:37 -08:00
nativeBuildInputs = [ gaucheBootstrap pkg-config texinfo autoreconfHook ];
2018-05-18 02:45:46 -07:00
buildInputs = [ libiconv gdbm openssl zlib mbedtls cacert ];
2020-12-11 11:50:37 -08:00
autoreconfPhase = ''
./DIST gen
'';
postPatch = ''
patchShebangs .
'';
2018-05-18 02:45:46 -07:00
configureFlags = [
"--with-iconv=${libiconv}"
"--with-dbm=gdbm"
"--with-zlib=${zlib}"
2020-06-19 08:33:06 -07:00
"--with-ca-bundle=${cacert}/etc/ssl/certs/ca-bundle.crt"
2018-05-18 02:45:46 -07: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 11:50:37 -08:00
meta = with lib; {
2018-05-18 02:45:46 -07:00
description = "R7RS Scheme scripting engine";
homepage = "https://practical-scheme.net/gauche/";
2018-05-18 02:45:46 -07:00
maintainers = with maintainers; [ mnacamura ];
license = licenses.bsd3;
platforms = platforms.unix;
2021-01-30 19:06:08 -08:00
broken = stdenv.isDarwin;
2018-05-18 02:45:46 -07:00
};
}