3
0
Fork 0
forked from mirrors/nixpkgs

Added mozart system (compiles, but untested).

svn path=/nixpkgs/trunk/; revision=19146
This commit is contained in:
Andres Löh 2009-12-29 14:57:01 +00:00
parent 3886310b7b
commit bc7ba3994c
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{stdenv, fetchurl, flex, bison, perl, gmp, zlib, tcl, tk, gdbm, m4, x11, emacs}:
stdenv.mkDerivation {
name = "mozart-1.4.0";
src = fetchurl {
url = http://www.mozart-oz.org/download/mozart-ftp/store/1.4.0-2008-07-02-tar/mozart-1.4.0.20080704-src.tar.gz;
sha256 = "5da73d80b5aa7fa42edca64159a1a076323f090e5c548f3747f94d0afc60b223";
};
buildInputs = [flex bison perl gmp zlib tcl tk gdbm m4 x11 emacs];
# micq gives a compile error for me
configureFlags = "--with-tcl=${tcl}/lib --with-tk=${tk}/lib --disable-contrib-micq";
}

View file

@ -2096,6 +2096,10 @@ let
inherit stdenv perl;
};
mozart = import ../development/compilers/mozart {
inherit fetchurl stdenv flex bison perl gmp zlib tcl tk gdbm m4 x11 emacs;
};
neko = import ../development/compilers/neko {
inherit sourceFromHead fetchurl stdenv lib pkgconfig composableDerivation
boehmgc apacheHttpd mysql zlib sqlite pcre apr makeWrapper;