yices: Add darwin to meta.platforms

This commit is contained in:
Will Dietz 2016-10-30 13:34:42 -05:00
parent 3cf27a654a
commit 0443affe17

View File

@ -22,11 +22,11 @@ stdenv.mkDerivation rec {
installPhase = ''make install LDCONFIG=true''; installPhase = ''make install LDCONFIG=true'';
meta = { meta = with stdenv.lib; {
description = "A high-performance theorem prover and SMT solver"; description = "A high-performance theorem prover and SMT solver";
homepage = "http://yices.csl.sri.com"; homepage = "http://yices.csl.sri.com";
license = stdenv.lib.licenses.unfreeRedistributable; license = licenses.unfreeRedistributable;
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux ++ platforms.darwin;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; maintainers = [ maintainers.thoughtpolice ];
}; };
} }