Skip to content

Commit

Permalink
yices: Add darwin to meta.platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
dtzWill committed Oct 30, 2016
1 parent 3cf27a6 commit 0443aff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/applications/science/logic/yices/default.nix
Expand Up @@ -22,11 +22,11 @@ stdenv.mkDerivation rec {

installPhase = ''make install LDCONFIG=true'';

meta = {
meta = with stdenv.lib; {
description = "A high-performance theorem prover and SMT solver";
homepage = "http://yices.csl.sri.com";
license = stdenv.lib.licenses.unfreeRedistributable;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
license = licenses.unfreeRedistributable;
platforms = platforms.linux ++ platforms.darwin;
maintainers = [ maintainers.thoughtpolice ];
};
}

0 comments on commit 0443aff

Please sign in to comment.