2021-01-23 13:15:07 +00:00
|
|
|
{ lib, 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
|
2023-02-06 01:31:15 +00:00
|
|
|
, glibcLocales
|
2018-11-16 07:41:48 +00:00
|
|
|
, 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
|
2021-02-14 16:40:00 +00:00
|
|
|
, ncurses
|
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 ];
|
|
|
|
};
|
|
|
|
|
2023-06-27 10:22:05 +00:00
|
|
|
libPath = lib.makeLibraryPath ([
|
2015-01-24 16:02:23 +00:00
|
|
|
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
|
2015-01-24 16:02:23 +00:00
|
|
|
libjpeg
|
|
|
|
libpng
|
|
|
|
mpfr
|
2022-02-13 22:15:55 +00:00
|
|
|
ncurses
|
2015-01-24 16:02:23 +00:00
|
|
|
openssl
|
|
|
|
pango
|
|
|
|
poppler
|
|
|
|
readline
|
|
|
|
sqlite
|
2023-06-27 10:22:05 +00:00
|
|
|
] ++ lib.optionals (!stdenv.isDarwin) [
|
|
|
|
libGL
|
|
|
|
libGLU
|
|
|
|
]);
|
2015-01-24 16:02:23 +00:00
|
|
|
|
|
|
|
in
|
2010-09-21 12:31:11 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "racket";
|
2024-02-10 04:20:00 +00:00
|
|
|
version = "8.12"; # always change at once with ./minimal.nix
|
2010-09-21 12:31:11 +00:00
|
|
|
|
2023-11-30 04:20:00 +00:00
|
|
|
src = (lib.makeOverridable ({ name, hash }:
|
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";
|
2023-11-30 04:20:00 +00:00
|
|
|
inherit hash;
|
2018-02-05 15:04:52 +00:00
|
|
|
}
|
|
|
|
)) {
|
2019-12-04 09:20:00 +00:00
|
|
|
name = "${pname}-${version}";
|
2024-02-10 04:20:00 +00:00
|
|
|
hash = "sha256-or26nirm5dGhg2S8to99BFOOSS2Oksn7Yb0y2L5b69c=";
|
2010-09-21 12:31:11 +00:00
|
|
|
};
|
|
|
|
|
2015-01-24 16:02:23 +00:00
|
|
|
FONTCONFIG_FILE = fontsConf;
|
|
|
|
LD_LIBRARY_PATH = libPath;
|
2021-01-23 13:15:07 +00:00
|
|
|
NIX_LDFLAGS = lib.concatStringsSep " " [
|
|
|
|
(lib.optionalString (stdenv.cc.isGNU && ! stdenv.isDarwin) "-lgcc_s")
|
2018-02-05 06:28:17 +00:00
|
|
|
];
|
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
|
|
|
|
2022-02-13 22:15:55 +00:00
|
|
|
buildInputs = [ fontconfig libffi libtool sqlite gsettings-desktop-schemas gtk3 ncurses ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ libiconv CoreFoundation ];
|
2010-09-21 12:31:11 +00:00
|
|
|
|
2021-04-04 17:55:30 +00:00
|
|
|
patches = [
|
|
|
|
# Hardcode variant detection because we wrap the Racket binary making it
|
|
|
|
# fail to detect its variant at runtime.
|
|
|
|
# See: https://github.com/NixOS/nixpkgs/issues/114993#issuecomment-812951247
|
|
|
|
./force-cs-variant.patch
|
2022-02-15 21:26:12 +00:00
|
|
|
|
|
|
|
# The entry point binary $out/bin/racket is codesigned at least once. The
|
|
|
|
# following error is triggered as a result.
|
|
|
|
# (error 'add-ad-hoc-signature "file already has a signature")
|
|
|
|
# We always remove the existing signature then call add-ad-hoc-signature to
|
|
|
|
# circumvent this error.
|
|
|
|
./force-remove-codesign-then-add.patch
|
2021-04-04 17:55:30 +00:00
|
|
|
];
|
|
|
|
|
2010-09-21 12:31:11 +00:00
|
|
|
preConfigure = ''
|
2017-08-26 19:12:07 +00:00
|
|
|
unset AR
|
2022-08-12 04:20:00 +00:00
|
|
|
for f in src/lt/configure src/cs/c/configure src/bc/src/string.c; do
|
2021-02-14 16:37:25 +00:00
|
|
|
substituteInPlace "$f" \
|
|
|
|
--replace /usr/bin/uname ${coreutils}/bin/uname \
|
|
|
|
--replace /bin/cp ${coreutils}/bin/cp \
|
|
|
|
--replace /bin/ln ${coreutils}/bin/ln \
|
|
|
|
--replace /bin/rm ${coreutils}/bin/rm \
|
|
|
|
--replace /bin/true ${coreutils}/bin/true
|
2018-05-29 18:07:41 +00:00
|
|
|
done
|
2022-02-15 21:26:12 +00:00
|
|
|
|
|
|
|
# The configure script forces using `libtool -o` as AR on Darwin. But, the
|
|
|
|
# `-o` option is only available from Apple libtool. GNU ar works here.
|
|
|
|
substituteInPlace src/ChezScheme/zlib/configure \
|
|
|
|
--replace 'ARFLAGS="-o"' 'AR=ar; ARFLAGS="rc"'
|
|
|
|
|
2015-01-24 16:02:23 +00:00
|
|
|
mkdir src/build
|
|
|
|
cd src/build
|
2019-01-16 20:38:42 +00:00
|
|
|
|
2022-02-15 21:26:12 +00:00
|
|
|
'' + lib.optionalString stdenv.isLinux ''
|
|
|
|
gappsWrapperArgs+=("--prefix" "LD_LIBRARY_PATH" ":" ${libPath})
|
2023-02-06 01:31:15 +00:00
|
|
|
gappsWrapperArgs+=("--set" "LOCALE_ARCHIVE" "${glibcLocales}/lib/locale/locale-archive")
|
2022-02-15 21:26:12 +00:00
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
|
|
|
gappsWrapperArgs+=("--prefix" "DYLD_LIBRARY_PATH" ":" ${libPath})
|
|
|
|
''
|
|
|
|
;
|
|
|
|
|
|
|
|
preBuild = lib.optionalString stdenv.isDarwin ''
|
|
|
|
# Cannot set DYLD_LIBRARY_PATH as an attr of this drv, becasue dynamic
|
|
|
|
# linker environment variables like this are purged.
|
|
|
|
# See: https://apple.stackexchange.com/a/212954/167199
|
|
|
|
|
|
|
|
# Make builders feed it to dlopen(...). Do not expose all of $libPath to
|
|
|
|
# DYLD_LIBRARY_PATH as the order of looking up symbols like
|
|
|
|
# `__cg_jpeg_resync_to_restart` will be messed up. Our libJPEG.dyllib
|
|
|
|
# expects it from our libTIFF.dylib, but instead it could not be found from
|
|
|
|
# the system `libTIFF.dylib`. DYLD_FALLBACK_LIBRARY_PATH has its own problem
|
|
|
|
# , too.
|
|
|
|
export DYLD_FALLBACK_LIBRARY_PATH="${libPath}"
|
2010-09-21 12:31:11 +00:00
|
|
|
'';
|
|
|
|
|
2017-08-26 19:12:07 +00:00
|
|
|
shared = if stdenv.isDarwin then "dylib" else "shared";
|
2020-05-03 09:20:00 +00:00
|
|
|
configureFlags = [ "--enable-${shared}" "--enable-lt=${libtool}/bin/libtool" ]
|
2022-10-06 16:38:53 +00:00
|
|
|
++ lib.optionals disableDocs [ "--disable-docs" ]
|
2023-11-20 07:39:58 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ "--disable-strip" "--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
|
|
|
|
2023-12-05 16:10:45 +00:00
|
|
|
dontStrip = stdenv.isDarwin;
|
|
|
|
|
2021-01-23 13:15:07 +00:00
|
|
|
meta = with 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
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://racket-lang.org/";
|
2023-08-16 04:20:00 +00:00
|
|
|
changelog = "https://github.com/racket/racket/releases/tag/v${version}";
|
2019-12-04 09:20:00 +00:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2023-11-28 18:52:47 +00:00
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2022-02-15 21:26:12 +00:00
|
|
|
platforms = [ "x86_64-darwin" "x86_64-linux" "aarch64-linux" "aarch64-darwin" ];
|
2010-09-21 12:31:11 +00:00
|
|
|
};
|
|
|
|
}
|