2015-01-24 17:02:23 +01:00
|
|
|
{ stdenv, fetchurl, makeFontsConf, makeWrapper
|
|
|
|
, cairo, coreutils, fontconfig, freefont_ttf
|
2017-03-07 21:08:02 +01:00
|
|
|
, glib, gmp, gtk2, libedit, libffi, libjpeg
|
|
|
|
, libpng, libtool, mpfr, openssl, pango, poppler
|
2015-01-24 17:02:23 +01:00
|
|
|
, readline, sqlite
|
2017-11-12 10:12:29 +01:00
|
|
|
, disableDocs ? false
|
2018-02-05 07:28:17 +01:00
|
|
|
, CoreFoundation
|
2015-01-24 17:02:23 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
fontsConf = makeFontsConf {
|
|
|
|
fontDirectories = [ freefont_ttf ];
|
|
|
|
};
|
|
|
|
|
|
|
|
libPath = stdenv.lib.makeLibraryPath [
|
|
|
|
cairo
|
|
|
|
fontconfig
|
|
|
|
glib
|
|
|
|
gmp
|
2016-09-11 23:24:51 +02:00
|
|
|
gtk2
|
2017-03-07 21:08:02 +01:00
|
|
|
libedit
|
2015-01-24 17:02:23 +01:00
|
|
|
libjpeg
|
|
|
|
libpng
|
|
|
|
mpfr
|
|
|
|
openssl
|
|
|
|
pango
|
|
|
|
poppler
|
|
|
|
readline
|
|
|
|
sqlite
|
|
|
|
];
|
|
|
|
|
|
|
|
in
|
2010-09-21 14:31:11 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-01-24 17:02:23 +01:00
|
|
|
name = "racket-${version}";
|
2018-01-28 21:32:24 +01:00
|
|
|
version = "6.12";
|
2010-09-21 14:31:11 +02:00
|
|
|
|
2018-02-05 16:04:52 +01:00
|
|
|
src = (stdenv.lib.makeOverridable ({ name, sha256 }:
|
|
|
|
fetchurl rec {
|
|
|
|
url = "https://mirror.racket-lang.org/installers/${version}/${name}-src.tgz";
|
|
|
|
inherit sha256;
|
|
|
|
}
|
|
|
|
)) {
|
|
|
|
inherit name;
|
2018-01-28 21:32:24 +01:00
|
|
|
sha256 = "0cwcypzjfl9py1s695mhqkiapff7c1w29llsmdj7qgn58wl0apk5";
|
2010-09-21 14:31:11 +02:00
|
|
|
};
|
|
|
|
|
2015-01-24 17:02:23 +01:00
|
|
|
FONTCONFIG_FILE = fontsConf;
|
|
|
|
LD_LIBRARY_PATH = libPath;
|
2018-02-05 07:28:17 +01: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 01:48:58 +01:00
|
|
|
|
2018-02-05 07:28:17 +01:00
|
|
|
buildInputs = [ fontconfig libffi libtool makeWrapper sqlite ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation ];
|
2010-09-21 14:31:11 +02:00
|
|
|
|
|
|
|
preConfigure = ''
|
2017-08-26 21:12:07 +02:00
|
|
|
unset AR
|
2018-05-29 20:07:41 +02:00
|
|
|
for f in src/configure src/racket/src/string.c; do
|
|
|
|
substituteInPlace "$f" --replace /usr/bin/uname ${coreutils}/bin/uname
|
|
|
|
done
|
2015-01-24 17:02:23 +01:00
|
|
|
mkdir src/build
|
|
|
|
cd src/build
|
2010-09-21 14:31:11 +02:00
|
|
|
'';
|
|
|
|
|
2017-08-26 21:12:07 +02:00
|
|
|
shared = if stdenv.isDarwin then "dylib" else "shared";
|
|
|
|
configureFlags = [ "--enable-${shared}" "--enable-lt=${libtool}/bin/libtool" ]
|
2016-01-22 23:08:30 +01:00
|
|
|
++ stdenv.lib.optional disableDocs [ "--disable-docs" ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin [ "--enable-xonx" ];
|
2010-09-21 14:31:11 +02:00
|
|
|
|
2015-01-24 17:02:23 +01:00
|
|
|
configureScript = "../configure";
|
|
|
|
|
|
|
|
enableParallelBuilding = false;
|
2013-12-10 22:37:35 +01:00
|
|
|
|
2011-02-16 01:48:58 +01:00
|
|
|
postInstall = ''
|
|
|
|
for p in $(ls $out/bin/) ; do
|
2018-03-18 09:22:53 +01:00
|
|
|
wrapProgram $out/bin/$p --prefix LD_LIBRARY_PATH ":" "${LD_LIBRARY_PATH}";
|
2011-02-16 01:48:58 +01:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2015-01-24 17:02:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-11-13 20:29:44 +01:00
|
|
|
description = "A programmable programming language";
|
2010-09-21 14:31:11 +02:00
|
|
|
longDescription = ''
|
2014-11-13 20:29:44 +01: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 14:31:11 +02:00
|
|
|
'';
|
|
|
|
homepage = http://racket-lang.org/;
|
2015-01-24 17:02:23 +01:00
|
|
|
license = licenses.lgpl3;
|
2016-07-25 06:03:35 +02:00
|
|
|
maintainers = with maintainers; [ kkallio henrytill vrthra ];
|
2017-09-30 21:32:27 +02:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2010-09-21 14:31:11 +02:00
|
|
|
};
|
|
|
|
}
|