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