alt-ergo: also supported on Darwin

This commit is contained in:
Vincent Laporte 2016-01-04 15:40:10 +01:00
parent 192fda79e0
commit fde89b6762

View File

@ -1,4 +1,4 @@
{ fetchurl, stdenv, ocaml, ocamlPackages }: { fetchurl, stdenv, ocamlPackages }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "alt-ergo-${version}"; name = "alt-ergo-${version}";
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
description = "High-performance theorem prover and SMT solver"; description = "High-performance theorem prover and SMT solver";
homepage = "http://alt-ergo.ocamlpro.com/"; homepage = "http://alt-ergo.ocamlpro.com/";
license = stdenv.lib.licenses.cecill-c; # LGPL-2 compatible license = stdenv.lib.licenses.cecill-c; # LGPL-2 compatible
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
}; };
} }