depot/third_party/nixpkgs/pkgs/by-name/sa/sagittarius-scheme/package.nix

83 lines
2.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
cmake,
pkg-config,
libffi,
boehmgc,
openssl,
zlib,
odbcSupport ? !stdenv.hostPlatform.isDarwin,
libiodbc,
}:
let
platformLdLibraryPath =
if stdenv.hostPlatform.isDarwin then
"DYLD_FALLBACK_LIBRARY_PATH"
else if (stdenv.hostPlatform.isLinux or stdenv.hostPlatform.isBSD) then
"LD_LIBRARY_PATH"
else
throw "unsupported platform";
in
stdenv.mkDerivation rec {
pname = "sagittarius-scheme";
version = "0.9.12";
src = fetchurl {
url = "https://bitbucket.org/ktakashi/${pname}/downloads/sagittarius-${version}.tar.gz";
hash = "sha256-w6aQkC7/vKO8exvDpsSsLyLXrm4FSKh8XYGJgseEII0=";
};
preBuild = ''
# since we lack rpath during build, need to explicitly add build path
# to LD_LIBRARY_PATH so we can load libsagittarius.so as required to
# build extensions
export ${platformLdLibraryPath}="$(pwd)/build"
'';
nativeBuildInputs = [
pkg-config
cmake
];
buildInputs = [
libffi
boehmgc
openssl
zlib
] ++ lib.optional odbcSupport libiodbc;
env.NIX_CFLAGS_COMPILE = toString (
lib.optionals stdenv.hostPlatform.isDarwin [
"-Wno-error=int-conversion"
]
++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
# error: '__builtin_ia32_aeskeygenassist128' needs target feature aes
"-maes"
]
);
meta = with lib; {
description = "R6RS/R7RS Scheme system";
longDescription = ''
Sagittarius Scheme is a free Scheme implementation supporting
R6RS/R7RS specification.
Features:
- Builtin CLOS.
- Common Lisp like reader macro.
- Cryptographic libraries.
- Customisable cipher and hash algorithm.
- Custom codec mechanism.
- CL like keyword lambda syntax (taken from Gauche).
- Constant definition form. (define-constant form).
- Builtin regular expression
- mostly works O(n)
- Replaceable reader
'';
homepage = "https://bitbucket.org/ktakashi/sagittarius-scheme";
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ abbe ];
};
}