- Append emacs to the oz wrapper's command search path rather than the
rpath. Previously, emacs would end up in the closure but the oz
shell script would not be helped by it. Now a user without emacs in
their PATH can still get the complete Oz experience (which depends
crucially on emacs). To build a variant without emacs, do
mozart.override { emacs = null; }
- Patch full path to oz executable into the oz desktop item to make the
output less reliant on the runtime PATH
- Compress .elc files to save a little bit of space
- Make it easier to extend platform support
- Inline builder.sh
- Be more specific about patching. oz and ozc are capable of inferring
OZHOME themselves; thus we generate wrappers only for the binary
executable components.
Note that gmp and boost would be removed by patchelf --shrink-path; I've
no idea whether they are used somehow, so we leave them in and forego
rpath shrinking for now.
80 lines
2.0 KiB
Nix
80 lines
2.0 KiB
Nix
{ stdenv, fetchurl, makeWrapper
|
|
, boost, gmp
|
|
, tcl-8_5, tk-8_5
|
|
, emacs
|
|
}:
|
|
|
|
let
|
|
version = "2.0.0";
|
|
|
|
binaries = {
|
|
"x86_64-linux" = fetchurl {
|
|
url = "mirror://sourceforge/project/mozart-oz/v${version}-alpha.0/mozart2-${version}-alpha.0+build.4105.5c06ced-x86_64-linux.tar.gz";
|
|
sha256 = "0rsfrjimjxqbwprpzzlmydl3z3aiwg5qkb052jixdxjyad7gyh5z";
|
|
};
|
|
};
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mozart-binary-${version}";
|
|
|
|
preferLocalBuild = true;
|
|
|
|
src = binaries."${stdenv.system}" or (throw "unsupported system: ${stdenv.system}");
|
|
|
|
libPath = stdenv.lib.makeLibraryPath
|
|
[ stdenv.cc.cc
|
|
boost
|
|
gmp
|
|
tcl-8_5
|
|
tk-8_5
|
|
];
|
|
|
|
TK_LIBRARY = "${tk-8_5}/lib/tk8.5";
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
buildCommand = ''
|
|
mkdir $out
|
|
tar xvf $src -C $out --strip-components=1
|
|
|
|
for exe in $out/bin/{ozemulator,ozwish} ; do
|
|
patchelf --set-interpreter $(< $NIX_CC/nix-support/dynamic-linker) \
|
|
--set-rpath $libPath \
|
|
$exe
|
|
done
|
|
|
|
wrapProgram $out/bin/ozwish \
|
|
--set OZHOME $out \
|
|
--set TK_LIBRARY $TK_LIBRARY
|
|
|
|
wrapProgram $out/bin/ozemulator --set OZHOME $out
|
|
|
|
${stdenv.lib.optionalString (emacs != null) ''
|
|
wrapProgram $out/bin/oz --suffix PATH ":" ${stdenv.lib.makeBinPath [ emacs ]}
|
|
''}
|
|
|
|
sed -i $out/share/applications/oz.desktop \
|
|
-e "s,Exec=oz %u,Exec=$out/bin/oz %u,"
|
|
|
|
gzip -9n $out/share/mozart/elisp"/"*.elc
|
|
|
|
patchShebangs $out
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://www.mozart-oz.org/";
|
|
description = "Multiplatform implementation of the Oz programming language";
|
|
longDescription = ''
|
|
The Mozart Programming System combines ongoing research in
|
|
programming language design and implementation, constraint logic
|
|
programming, distributed computing, and human-computer
|
|
interfaces. Mozart implements the Oz language and provides both
|
|
expressive power and advanced functionality.
|
|
'';
|
|
license = licenses.mit;
|
|
platforms = attrNames binaries;
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|