1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/compilers/mozart/binary.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

2015-10-03 22:23:11 +01:00
{ stdenv, fetchurl, boost, emacs, gmp, makeWrapper
, tcl-8_5, tk-8_5
}:
2014-11-11 06:21:43 +00:00
2014-10-11 20:05:46 +01:00
let
2015-10-03 22:23:11 +01:00
2014-10-11 20:05:46 +01:00
version = "2.0.0";
2015-10-03 22:23:11 +01:00
in stdenv.mkDerivation {
name = "mozart-binary-${version}";
2014-10-11 20:05:46 +01:00
src = fetchurl {
url = "mirror://sourceforge/project/mozart-oz/v${version}-alpha.0/mozart2-${version}-alpha.0+build.4105.5c06ced-x86_64-linux.tar.gz";
2014-10-11 20:05:46 +01:00
sha256 = "0rsfrjimjxqbwprpzzlmydl3z3aiwg5qkb052jixdxjyad7gyh5z";
};
2014-10-11 20:05:46 +01:00
libPath = stdenv.lib.makeLibraryPath
2015-10-03 22:23:11 +01:00
[ stdenv.cc.cc
boost
emacs
gmp
tcl-8_5
tk-8_5
];
TK_LIBRARY = "${tk-8_5}/lib/tk8.5";
2014-10-11 20:05:46 +01:00
builder = ./builder.sh;
buildInputs = [ makeWrapper ];
2014-10-11 20:05:46 +01:00
meta = with stdenv.lib; {
homepage = "http://www.mozart-oz.org/";
2014-11-13 13:50:49 +00:00
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.
'';
2014-10-11 20:05:46 +01:00
license = licenses.mit;
2014-11-13 13:50:49 +00:00
platforms = [ "x86_64-linux" ];
2014-10-11 20:05:46 +01:00
};
}