nixpkgs/pkgs/development/compilers/mozart/default.nix
Andres Löh bc7ba3994c Added mozart system (compiles, but untested).
svn path=/nixpkgs/trunk/; revision=19146
2009-12-29 14:57:01 +00:00

15 lines
548 B
Nix

{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";
}