nixpkgs: add ltl2ba 1.1

Signed-off-by: Austin Seipp <aseipp@pobox.com>

+26
+24
pkgs/applications/science/logic/ltl2ba/default.nix
···
··· 1 + { fetchurl, stdenv }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "ltl2ba-${version}"; 5 + version = "1.1"; 6 + 7 + src = fetchurl { 8 + url = "http://www.lsv.ens-cachan.fr/~gastin/ltl2ba/${name}.tar.gz"; 9 + sha256 = "16z0gc7a9dkarwn0l6rvg5jdhw1q4qyn4501zlchy0zxqddz0sx6"; 10 + }; 11 + 12 + installPhase = '' 13 + mkdir -p $out/bin 14 + mv ltl2ba $out/bin 15 + ''; 16 + 17 + meta = { 18 + description = "fast translation from LTL formulae to Buchi automata"; 19 + homepage = "http://www.lsv.ens-cachan.fr/~gastin/ltl2ba"; 20 + license = stdenv.lib.licenses.gpl2Plus; 21 + platforms = stdenv.lib.platforms.linux; 22 + maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 10336 10337 logisim = callPackage ../applications/science/logic/logisim {}; 10338 10339 matita = callPackage ../applications/science/logic/matita { 10340 ocaml = ocaml_3_11_2; 10341 inherit (ocamlPackages_3_11_2) findlib lablgtk ocaml_expat gmetadom ocaml_http
··· 10336 10337 logisim = callPackage ../applications/science/logic/logisim {}; 10338 10339 + ltl2ba = callPackage ../applications/science/logic/ltl2ba {}; 10340 + 10341 matita = callPackage ../applications/science/logic/matita { 10342 ocaml = ocaml_3_11_2; 10343 inherit (ocamlPackages_3_11_2) findlib lablgtk ocaml_expat gmetadom ocaml_http