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

63 lines
1.8 KiB
Nix
Raw Normal View History

2016-12-22 11:42:02 +00:00
{ stdenv, fetchurl, unzip, makeWrapper
, flex, bison, ncurses, buddy, tecla, libsigsegv, gmpxx,
}:
2016-12-22 11:42:02 +00:00
let
2016-12-22 11:42:02 +00:00
version = "2.7";
fullMaude = fetchurl {
2016-12-22 11:42:02 +00:00
url = "https://raw.githubusercontent.com/maude-team/full-maude/master/full-maude27c.maude";
sha256 = "08bg3gn1vyjy5k69hnynpzc9s1hnrbkyv6z08y1h2j37rlc4c18y";
};
in
stdenv.mkDerivation rec {
name = "maude-${version}";
src = fetchurl {
url = "https://github.com/maude-team/maude/archive/v${version}-ext-hooks.tar.gz";
sha256 = "02p0snxm69rs8pvm93r91p881dw6p3bxmazr3cfw5pnxpgz0vjl0";
};
2016-12-22 11:42:02 +00:00
buildInputs = [flex bison ncurses buddy tecla gmpxx libsigsegv makeWrapper unzip];
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"
CFLAGS="-O3" CXXFLAGS="-O3"
)
'';
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-22 11:42:02 +00:00
install -D -m 444 ${fullMaude} $out/share/maude/full-maude.maude
'';
meta = {
homepage = "http://maude.cs.uiuc.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.linux;
maintainers = [ stdenv.lib.maintainers.peti ];
};
}