Add expression for PolyML
svn path=/nixpkgs/trunk/; revision=18875
This commit is contained in:
parent
16eabd95b3
commit
adbaa14548
24
pkgs/development/compilers/polyml/default.nix
Normal file
24
pkgs/development/compilers/polyml/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
|
let
|
||||||
|
pname = "polyml";
|
||||||
|
version = "5.3";
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/${pname}/${pname}.${version}.tar.gz";
|
||||||
|
sha256 = "154e836f4e65b5c72f8190d3c02e5ed237921cef716cb49add1e0e1e35fb2af4";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Standard ML compiler and interpreter";
|
||||||
|
longDescription = ''
|
||||||
|
Poly/ML is a full implementation of Standard ML.
|
||||||
|
'';
|
||||||
|
homepage = http://www.polyml.org/;
|
||||||
|
license = "LGPL";
|
||||||
|
};
|
||||||
|
}
|
@ -2347,6 +2347,10 @@ let
|
|||||||
libXt;
|
libXt;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
polyml = import ../development/compilers/polyml {
|
||||||
|
inherit stdenv fetchurl;
|
||||||
|
};
|
||||||
|
|
||||||
python = if getConfig ["python" "full"] false then pythonFull else pythonBase;
|
python = if getConfig ["python" "full"] false then pythonFull else pythonBase;
|
||||||
python25 = if getConfig ["python" "full"] false then python25Full else python25Base;
|
python25 = if getConfig ["python" "full"] false then python25Full else python25Base;
|
||||||
pythonBase = python25Base;
|
pythonBase = python25Base;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user