nixpkgs/pkgs/development/interpreters/maude/default.nix

74 lines
2.1 KiB
Nix
Raw Normal View History

2016-12-29 11:18:28 +00:00
{ stdenv, fetchurl, unzip, makeWrapper , flex, bison, ncurses, buddy, tecla
, libsigsegv, gmpxx, cln
2016-12-22 11:42:02 +00:00
}:
2016-12-22 11:42:02 +00:00
let
2016-12-29 11:18:28 +00:00
version = "2.7.1";
fullMaude = fetchurl {
2016-12-29 11:18:28 +00:00
url = "http://maude.cs.illinois.edu/w/images/c/ca/Full-Maude-${version}.zip";
sha256 = "0y4gn7n8vh24r24vckhpkd46hb5hqsbrm4w9zr6dz4paafq12fjc";
2016-12-22 11:42:02 +00:00
};
in
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "maude";
inherit version;
2016-12-22 11:42:02 +00:00
src = fetchurl {
2016-12-29 11:18:28 +00:00
url = "http://maude.cs.illinois.edu/w/images/d/d8/Maude-${version}.tar.gz";
sha256 = "0jskn5dm8vvbd3mlryjxdb6wfpkvyx174wk7ci9a31aylxzpr25i";
};
2016-12-29 11:18:28 +00:00
buildInputs = [
flex bison ncurses buddy tecla gmpxx libsigsegv makeWrapper unzip cln
2016-12-29 11:18:28 +00:00
];
hardeningDisable = [ "stackprotector" ] ++
stdenv.lib.optionals stdenv.isi686 [ "pic" "fortify" ];
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"
--without-cvc4 # Our version is too new for Maude to cope.
2014-01-13 16:14:40 +00:00
)
'';
doCheck = true;
2014-01-13 16:14:40 +00:00
postInstall = ''
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}
install -D -m 444 full-maude.maude $out/share/maude/full-maude.maude
'';
# bison -dv surface.yy -o surface.c
# mv surface.c surface.cc
# mv: cannot stat 'surface.c': No such file or directory
enableParallelBuilding = false;
meta = {
homepage = http://maude.cs.illinois.edu/;
description = "High-level specification language";
license = stdenv.lib.licenses.gpl2;
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.
'';
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.peti ];
};
}