2009-12-10 16:16:06 +03:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-01-14 18:27:10 +04:00
|
|
|
name = "polyml-5.5.1";
|
2009-12-10 16:16:06 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-01-14 18:27:10 +04:00
|
|
|
url = "mirror://sourceforge/polyml/polyml.5.5.1.tar.gz";
|
|
|
|
sha256 = "16i0ir5mydl7381aijihkll19khp3z8dq0g2ja6k0pcbpkd0k06g";
|
2009-12-10 16:16:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Standard ML compiler and interpreter";
|
|
|
|
longDescription = ''
|
|
|
|
Poly/ML is a full implementation of Standard ML.
|
|
|
|
'';
|
|
|
|
homepage = http://www.polyml.org/;
|
2012-09-06 20:46:54 +04:00
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
2011-05-13 19:55:05 +04:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
maintainers = [ #Add your name here!
|
|
|
|
stdenv.lib.maintainers.z77z
|
|
|
|
];
|
2009-12-10 16:16:06 +03:00
|
|
|
};
|
|
|
|
}
|