2014-05-01 00:27:05 -07:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "ltl2ba";
|
2018-11-19 02:28:38 -08:00
|
|
|
version = "1.2";
|
2014-05-01 00:27:05 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "http://www.lsv.ens-cachan.fr/~gastin/ltl2ba/${pname}-${version}.tar.gz";
|
2018-11-19 02:28:38 -08:00
|
|
|
sha256 = "0vzv5g7v87r41cvdafxi6yqnk7glzxrzgavy8213k59f6v11dzlx";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|