mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
bc7aed2b1a
Update to use the new sdk.
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ stdenv, lib, fetchFromGitHub, autoreconfHook, gaucheBootstrap, pkg-config, texinfo
|
|
, libiconv, gdbm, openssl, zlib, mbedtls, cacert }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gauche";
|
|
version = "0.9.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "shirok";
|
|
repo = pname;
|
|
rev = "release${lib.replaceStrings [ "." ] [ "_" ] version}";
|
|
sha256 = "0ki1w7sa10ivmg51sqjskby0gsznb0d3738nz80x589033km5hmb";
|
|
};
|
|
|
|
nativeBuildInputs = [ gaucheBootstrap pkg-config texinfo autoreconfHook ];
|
|
|
|
buildInputs = [ libiconv gdbm openssl zlib mbedtls cacert ];
|
|
|
|
autoreconfPhase = ''
|
|
./DIST gen
|
|
'';
|
|
|
|
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";
|
|
homepage = "https://practical-scheme.net/gauche/";
|
|
maintainers = with maintainers; [ mnacamura ];
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|