2014-05-01 00:27:05 -07:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ltl2ba-${version}";
|
2018-03-14 21:06:53 -07:00
|
|
|
version = "1.2b1";
|
2014-05-01 00:27:05 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.lsv.ens-cachan.fr/~gastin/ltl2ba/${name}.tar.gz";
|
2018-03-14 21:06:53 -07:00
|
|
|
sha256 = "1f4jnkfkyj8lcc5qfqbiypfc11rhhpqqi6xs9xx5dysg6r6303wm";
|
2014-05-01 00:27:05 -07:00
|
|
|
};
|
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-07 08:34:05 -08:00
|
|
|
|
2016-03-02 23:24:00 -08:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "CC=gcc" ""
|
|
|
|
'';
|
|
|
|
|
2014-05-01 00:27:05 -07:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
mv ltl2ba $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "Fast translation from LTL formulae to Buchi automata";
|
2014-05-01 00:27:05 -07:00
|
|
|
homepage = "http://www.lsv.ens-cachan.fr/~gastin/ltl2ba";
|
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-03-02 23:24:00 -08:00
|
|
|
platforms = stdenv.lib.platforms.darwin ++ stdenv.lib.platforms.linux;
|
2014-05-01 00:27:05 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
|
|
};
|
|
|
|
}
|