2014-06-04 15:55:35 +01:00
|
|
|
{ stdenv, fetchurl, flex, bison, ncurses, buddy, tecla, libsigsegv, gmpxx, makeWrapper }:
|
2008-07-15 10:58:30 +01:00
|
|
|
|
2008-07-18 21:11:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2011-02-11 14:41:03 +00:00
|
|
|
name = "maude-2.6";
|
2010-04-12 12:21:42 +01:00
|
|
|
|
2008-07-18 21:11:25 +01:00
|
|
|
src = fetchurl {
|
2011-02-11 14:41:03 +00:00
|
|
|
url = "http://maude.cs.uiuc.edu/download/current/Maude-2.6.tar.gz";
|
|
|
|
sha256 = "182abzhvjvlaa21aqv7802v3bs57a4dm7cw09s3mqmih7nzpkfm5";
|
2008-11-13 19:35:48 +00:00
|
|
|
};
|
2010-04-12 12:21:42 +01:00
|
|
|
|
2008-11-13 19:35:48 +00:00
|
|
|
fullMaude = fetchurl {
|
2014-06-04 15:55:35 +01:00
|
|
|
url = "https://full-maude.googlecode.com/git/full-maude261h.maude";
|
|
|
|
sha256 = "0xx8bfn6arsa75m5vhp5lmpazgfw230ssq33h9vifswlvzzc81ha";
|
2008-07-15 10:58:30 +01:00
|
|
|
};
|
2010-04-12 12:21:42 +01:00
|
|
|
|
2009-07-03 12:31:33 +01:00
|
|
|
buildInputs = [flex bison ncurses buddy tecla gmpxx libsigsegv makeWrapper];
|
2010-04-12 12:21:42 +01:00
|
|
|
|
2014-01-13 16:14:40 +00:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray=(
|
|
|
|
--datadir=$out/share/maude
|
|
|
|
TECLA_LIBS="-ltecla -lncursesw"
|
|
|
|
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
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/share/maude
|
2014-06-04 15:55:35 +01:00
|
|
|
cp ${fullMaude} -d $out/share/maude/full-maude.maude
|
2008-07-15 10:58:30 +01:00
|
|
|
'';
|
2010-04-12 12:21:42 +01:00
|
|
|
|
2010-05-09 17:01:44 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://maude.cs.uiuc.edu/";
|
|
|
|
description = "Maude -- a high-level specification language";
|
|
|
|
license = "GPLv2";
|
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.
|
|
|
|
'';
|
|
|
|
|
2014-01-13 16:14:40 +00:00
|
|
|
hydraPlatforms = stdenv.lib.platforms.linux;
|
2010-05-09 17:01:44 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
2008-07-15 10:58:30 +01:00
|
|
|
}
|