2020-01-31 15:24:49 +00:00
|
|
|
{ stdenv, fetchurl, unzip, makeWrapper, flex, bison, ncurses, buddy, tecla
|
|
|
|
, libsigsegv, gmpxx, cln, yices
|
2016-12-22 11:42:02 +00:00
|
|
|
}:
|
2008-07-15 10:58:30 +01:00
|
|
|
|
2016-12-22 11:42:02 +00:00
|
|
|
let
|
2010-04-12 12:21:42 +01:00
|
|
|
|
2020-01-31 15:24:49 +00:00
|
|
|
version = "3.0";
|
2010-04-12 12:21:42 +01:00
|
|
|
|
2008-11-13 19:35:48 +00:00
|
|
|
fullMaude = fetchurl {
|
2020-01-31 15:24:49 +00:00
|
|
|
url = "http://maude.cs.illinois.edu/w/images/0/04/Full-Maude-${version}.zip";
|
|
|
|
sha256 = "0gf36wlkkl343vlxgryqdhxmgyn8z0cc2zayccd7ac3inmj1iayw";
|
2016-12-22 11:42:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "maude";
|
|
|
|
inherit version;
|
2016-12-22 11:42:02 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-01-31 15:24:49 +00:00
|
|
|
url = "http://maude.cs.illinois.edu/w/images/9/92/Maude-${version}.tar.gz";
|
|
|
|
sha256 = "0vhn3lsck6ji9skrgm67hqrn3k4f6y442q73jbw65qqznm321k5a";
|
2008-07-15 10:58:30 +01:00
|
|
|
};
|
2010-04-12 12:21:42 +01:00
|
|
|
|
2016-12-29 11:18:28 +00:00
|
|
|
buildInputs = [
|
2020-01-31 15:24:49 +00:00
|
|
|
flex bison ncurses buddy tecla gmpxx libsigsegv makeWrapper unzip cln yices
|
2016-12-29 11:18:28 +00:00
|
|
|
];
|
2010-04-12 12:21:42 +01:00
|
|
|
|
2016-08-24 19:29:36 +01:00
|
|
|
hardeningDisable = [ "stackprotector" ] ++
|
|
|
|
stdenv.lib.optionals stdenv.isi686 [ "pic" "fortify" ];
|
2016-05-31 13:58:10 +01:00
|
|
|
|
2014-01-13 16:14:40 +00:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray=(
|
2016-12-22 11:42:02 +00:00
|
|
|
--datadir="$out/share/maude"
|
2014-01-13 16:14:40 +00:00
|
|
|
TECLA_LIBS="-ltecla -lncursesw"
|
2016-12-29 11:18:28 +00:00
|
|
|
LIBS="-lcln"
|
2014-01-13 16:14:40 +00:00
|
|
|
CFLAGS="-O3" CXXFLAGS="-O3"
|
|
|
|
)
|
|
|
|
'';
|
2010-04-12 12:21:42 +01:00
|
|
|
|
2011-02-11 14:41:03 +00:00
|
|
|
doCheck = true;
|
2010-04-12 12:21:42 +01:00
|
|
|
|
2014-01-13 16:14:40 +00:00
|
|
|
postInstall = ''
|
2011-01-26 15:39:24 +00:00
|
|
|
for n in "$out/bin/"*; do wrapProgram "$n" --suffix MAUDE_LIB ':' "$out/share/maude"; done
|
2016-12-29 11:18:28 +00:00
|
|
|
unzip ${fullMaude}
|
2020-01-31 15:24:49 +00:00
|
|
|
install -D -m 444 full-maude3.maude $out/share/maude/full-maude.maude
|
2008-07-15 10:58:30 +01:00
|
|
|
'';
|
2010-04-12 12:21:42 +01:00
|
|
|
|
2018-11-13 03:32:19 +00:00
|
|
|
# bison -dv surface.yy -o surface.c
|
|
|
|
# mv surface.c surface.cc
|
|
|
|
# mv: cannot stat 'surface.c': No such file or directory
|
|
|
|
enableParallelBuilding = false;
|
|
|
|
|
2010-05-09 17:01:44 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://maude.cs.illinois.edu/";
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "High-level specification language";
|
2020-01-31 15:24:49 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-08-26 19:09:14 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Maude is a high-performance reflective language and system
|
|
|
|
supporting both equational and rewriting logic specification and
|
|
|
|
programming for a wide range of applications. Maude has been
|
|
|
|
influenced in important ways by the OBJ3 language, which can be
|
|
|
|
regarded as an equational logic sublanguage. Besides supporting
|
|
|
|
equational specification and programming, Maude also supports
|
|
|
|
rewriting logic computation.
|
|
|
|
'';
|
|
|
|
|
2017-07-05 18:28:44 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-05-16 21:30:20 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.peti ];
|
2010-05-09 17:01:44 +01:00
|
|
|
};
|
2008-07-15 10:58:30 +01:00
|
|
|
}
|