2019-06-16 19:59:06 +00:00
|
|
|
{ stdenv, fetchurl, makeFontsConf
|
2019-01-31 17:02:13 +00:00
|
|
|
, cacert
|
2015-01-24 16:02:23 +00:00
|
|
|
, cairo, coreutils, fontconfig, freefont_ttf
|
2018-11-16 07:41:48 +00:00
|
|
|
, glib, gmp
|
|
|
|
, gtk3
|
|
|
|
, libedit, libffi
|
2018-02-23 14:49:52 +00:00
|
|
|
, libiconv
|
2019-01-31 17:17:39 +00:00
|
|
|
, libGL
|
|
|
|
, libGLU
|
2018-02-23 14:49:52 +00:00
|
|
|
, libjpeg
|
2017-03-07 20:08:02 +00:00
|
|
|
, libpng, libtool, mpfr, openssl, pango, poppler
|
2015-01-24 16:02:23 +00:00
|
|
|
, readline, sqlite
|
2017-11-12 09:12:29 +00:00
|
|
|
, disableDocs ? false
|
2018-02-05 06:28:17 +00:00
|
|
|
, CoreFoundation
|
2018-07-17 20:11:16 +00:00
|
|
|
, gsettings-desktop-schemas
|
2019-01-16 20:38:42 +00:00
|
|
|
, wrapGAppsHook
|
2015-01-24 16:02:23 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
fontsConf = makeFontsConf {
|
|
|
|
fontDirectories = [ freefont_ttf ];
|
|
|
|
};
|
|
|
|
|
|
|
|
libPath = stdenv.lib.makeLibraryPath [
|
|
|
|
cairo
|
|
|
|
fontconfig
|
|
|
|
glib
|
|
|
|
gmp
|
2018-06-06 13:04:42 +00:00
|
|
|
gtk3
|
2018-07-17 20:11:16 +00:00
|
|
|
gsettings-desktop-schemas
|
2017-03-07 20:08:02 +00:00
|
|
|
libedit
|
2019-01-31 17:17:39 +00:00
|
|
|
libGL
|
|
|
|
libGLU
|
2015-01-24 16:02:23 +00:00
|
|
|
libjpeg
|
|
|
|
libpng
|
|
|
|
mpfr
|
|
|
|
openssl
|
|
|
|
pango
|
|
|
|
poppler
|
|
|
|
readline
|
|
|
|
sqlite
|
|
|
|
];
|
|
|
|
|
|
|
|
in
|
2010-09-21 12:31:11 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "racket";
|
2019-05-16 08:02:28 +00:00
|
|
|
version = "7.3"; # always change at once with ./minimal.nix
|
2010-09-21 12:31:11 +00:00
|
|
|
|
2018-02-05 15:04:52 +00:00
|
|
|
src = (stdenv.lib.makeOverridable ({ name, sha256 }:
|
2019-08-13 21:52:01 +00:00
|
|
|
fetchurl {
|
2018-02-05 15:04:52 +00:00
|
|
|
url = "https://mirror.racket-lang.org/installers/${version}/${name}-src.tgz";
|
|
|
|
inherit sha256;
|
|
|
|
}
|
|
|
|
)) {
|
2019-08-15 12:41:18 +00:00
|
|
|
inherit ;name = "${pname}-${version}";
|
2019-05-16 08:02:28 +00:00
|
|
|
sha256 = "0h6072njhb87rkz4arijvahxgjzn8r14s4wns0ijvxm89bg136yl";
|
2010-09-21 12:31:11 +00:00
|
|
|
};
|
|
|
|
|
2015-01-24 16:02:23 +00:00
|
|
|
FONTCONFIG_FILE = fontsConf;
|
|
|
|
LD_LIBRARY_PATH = libPath;
|
2018-02-05 06:28:17 +00:00
|
|
|
NIX_LDFLAGS = stdenv.lib.concatStringsSep " " [
|
|
|
|
(stdenv.lib.optionalString (stdenv.cc.isGNU && ! stdenv.isDarwin) "-lgcc_s")
|
|
|
|
(stdenv.lib.optionalString stdenv.isDarwin "-framework CoreFoundation")
|
|
|
|
];
|
2011-02-16 00:48:58 +00:00
|
|
|
|
2019-01-31 17:02:13 +00:00
|
|
|
nativeBuildInputs = [ cacert wrapGAppsHook ];
|
2019-01-16 20:38:42 +00:00
|
|
|
|
|
|
|
buildInputs = [ fontconfig libffi libtool sqlite gsettings-desktop-schemas gtk3 ]
|
2018-02-23 14:49:52 +00:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv CoreFoundation ];
|
2010-09-21 12:31:11 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
2017-08-26 19:12:07 +00:00
|
|
|
unset AR
|
2019-02-04 05:52:59 +00:00
|
|
|
for f in src/lt/configure src/cs/c/configure src/racket/src/string.c; do
|
2018-05-29 18:07:41 +00:00
|
|
|
substituteInPlace "$f" --replace /usr/bin/uname ${coreutils}/bin/uname
|
|
|
|
done
|
2015-01-24 16:02:23 +00:00
|
|
|
mkdir src/build
|
|
|
|
cd src/build
|
2019-01-16 20:38:42 +00:00
|
|
|
|
2019-01-20 23:54:15 +00:00
|
|
|
gappsWrapperArgs+=("--prefix" "LD_LIBRARY_PATH" ":" ${LD_LIBRARY_PATH})
|
2010-09-21 12:31:11 +00:00
|
|
|
'';
|
|
|
|
|
2017-08-26 19:12:07 +00:00
|
|
|
shared = if stdenv.isDarwin then "dylib" else "shared";
|
|
|
|
configureFlags = [ "--enable-${shared}" "--enable-lt=${libtool}/bin/libtool" ]
|
2016-01-22 22:08:30 +00:00
|
|
|
++ stdenv.lib.optional disableDocs [ "--disable-docs" ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin [ "--enable-xonx" ];
|
2010-09-21 12:31:11 +00:00
|
|
|
|
2015-01-24 16:02:23 +00:00
|
|
|
configureScript = "../configure";
|
|
|
|
|
|
|
|
enableParallelBuilding = false;
|
2013-12-10 21:37:35 +00:00
|
|
|
|
2011-02-16 00:48:58 +00:00
|
|
|
|
2015-01-24 16:02:23 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-11-13 19:29:44 +00:00
|
|
|
description = "A programmable programming language";
|
2010-09-21 12:31:11 +00:00
|
|
|
longDescription = ''
|
2014-11-13 19:29:44 +00:00
|
|
|
Racket is a full-spectrum programming language. It goes beyond
|
|
|
|
Lisp and Scheme with dialects that support objects, types,
|
|
|
|
laziness, and more. Racket enables programmers to link
|
|
|
|
components written in different dialects, and it empowers
|
|
|
|
programmers to create new, project-specific dialects. Racket's
|
|
|
|
libraries support applications from web servers and databases to
|
|
|
|
GUIs and charts.
|
2010-09-21 12:31:11 +00:00
|
|
|
'';
|
|
|
|
homepage = http://racket-lang.org/;
|
2015-01-24 16:02:23 +00:00
|
|
|
license = licenses.lgpl3;
|
2016-07-25 04:03:35 +00:00
|
|
|
maintainers = with maintainers; [ kkallio henrytill vrthra ];
|
2018-02-23 14:49:52 +00:00
|
|
|
platforms = [ "x86_64-darwin" "x86_64-linux" ];
|
2019-01-31 16:23:22 +00:00
|
|
|
broken = stdenv.isDarwin; # No support yet for setting FFI lookup path
|
2010-09-21 12:31:11 +00:00
|
|
|
};
|
|
|
|
}
|