mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
isabelle: use polyml 5.6
Isabelle 2016 does not work with newer PolyML versions.
This commit is contained in:
parent
339330b322
commit
795c003359
33
pkgs/development/compilers/polyml/5.6.nix
Normal file
33
pkgs/development/compilers/polyml/5.6.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{stdenv, fetchurl, autoreconfHook}:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "5.6";
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "polyml-${version}";
|
||||||
|
|
||||||
|
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
||||||
|
substituteInPlace configure.ac --replace stdc++ c++
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = stdenv.lib.optional stdenv.isDarwin autoreconfHook;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/polyml/polyml.${version}.tar.gz";
|
||||||
|
sha256 = "05d6l2a5m9jf32a8kahwg2p2ph4x9rjf1nsl83331q3gwn5bkmr0";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Standard ML compiler and interpreter";
|
||||||
|
longDescription = ''
|
||||||
|
Poly/ML is a full implementation of Standard ML.
|
||||||
|
'';
|
||||||
|
homepage = http://www.polyml.org/;
|
||||||
|
license = stdenv.lib.licenses.lgpl21;
|
||||||
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
|
maintainers = [ #Add your name here!
|
||||||
|
stdenv.lib.maintainers.z77z
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
@ -6314,6 +6314,7 @@ with pkgs;
|
|||||||
pltScheme = racket; # just to be sure
|
pltScheme = racket; # just to be sure
|
||||||
|
|
||||||
polyml = callPackage ../development/compilers/polyml { };
|
polyml = callPackage ../development/compilers/polyml { };
|
||||||
|
polyml56 = callPackage ../development/compilers/polyml/5.6.nix { };
|
||||||
|
|
||||||
pure = callPackage ../development/interpreters/pure {
|
pure = callPackage ../development/interpreters/pure {
|
||||||
llvm = llvm_35;
|
llvm = llvm_35;
|
||||||
@ -18198,6 +18199,7 @@ with pkgs;
|
|||||||
tini = callPackage ../applications/virtualization/tini {};
|
tini = callPackage ../applications/virtualization/tini {};
|
||||||
|
|
||||||
isabelle = callPackage ../applications/science/logic/isabelle {
|
isabelle = callPackage ../applications/science/logic/isabelle {
|
||||||
|
polyml = polyml56;
|
||||||
java = if stdenv.isLinux then jre else jdk;
|
java = if stdenv.isLinux then jre else jdk;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user