2014-05-26 19:28:09 -07:00
|
|
|
# Binaries provided by Open Dylan to be used to bootstrap from source.
|
|
|
|
# The binaries can also be used as is.
|
|
|
|
{stdenv, fetchurl, patchelf, boehmgc, gnused, gcc, makeWrapper}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "opendylan-2013.2";
|
|
|
|
|
2018-08-20 12:11:29 -07:00
|
|
|
src = if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl {
|
2018-03-24 22:04:25 -07:00
|
|
|
url = https://opendylan.org/downloads/opendylan/2013.2/opendylan-2013.2-x86_64-linux.tar.bz2;
|
2014-05-26 19:28:09 -07:00
|
|
|
sha256 = "035brbw3hm7zrs593q4zc42yglj1gmmkw3b1r7zzlw3ks4i2lg7h";
|
|
|
|
}
|
2018-08-20 12:11:29 -07:00
|
|
|
else if stdenv.hostPlatform.system == "i686-linux" then fetchurl {
|
2018-03-24 22:04:25 -07:00
|
|
|
url = https://opendylan.org/downloads/opendylan/2013.2/opendylan-2013.2-x86-linux.tar.bz2;
|
2014-05-26 19:28:09 -07:00
|
|
|
sha256 = "0c61ihvblcsjrw6ncr8x8ylhskcrqs8pajs4mg5di36cvqw12nq5";
|
|
|
|
}
|
2018-08-20 12:11:29 -07:00
|
|
|
else throw "platform ${stdenv.hostPlatform.system} not supported.";
|
2014-05-26 19:28:09 -07:00
|
|
|
|
2018-09-27 14:38:10 -07:00
|
|
|
nativeBuildInputs = [ patchelf boehmgc gnused makeWrapper ];
|
2014-05-26 19:28:09 -07:00
|
|
|
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p "$out"
|
|
|
|
tar --strip-components=1 -xjf "$src" -C "$out"
|
|
|
|
|
2014-12-17 10:11:30 -08:00
|
|
|
interpreter="$(cat "$NIX_CC"/nix-support/dynamic-linker)"
|
2014-05-26 19:28:09 -07:00
|
|
|
for a in "$out"/bin/*; do
|
|
|
|
patchelf --set-interpreter "$interpreter" "$a"
|
2016-01-23 23:29:00 -08:00
|
|
|
patchelf --set-rpath "$out/lib:${boehmgc.out}/lib" "$a"
|
2014-05-26 19:28:09 -07:00
|
|
|
done
|
|
|
|
for a in "$out"/lib/*.so; do
|
2016-01-23 23:29:00 -08:00
|
|
|
patchelf --set-rpath "$out/lib:${boehmgc.out}/lib" "$a"
|
2014-05-26 19:28:09 -07:00
|
|
|
done
|
2016-04-16 09:45:34 -07:00
|
|
|
sed -i -e "s|\-lgc|\-L${boehmgc.out}\/lib -lgc|" $out/lib/config.jam
|
2014-05-26 19:28:09 -07:00
|
|
|
wrapProgram $out/bin/dylan-compiler --suffix PATH : ${gcc}/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2018-06-23 04:34:55 -07:00
|
|
|
homepage = https://opendylan.org;
|
2014-11-11 05:20:43 -08:00
|
|
|
description = "A multi-paradigm functional and object-oriented programming language";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-05-26 19:28:09 -07:00
|
|
|
};
|
|
|
|
}
|