yices: Add darwin to meta.platforms
This commit is contained in:
parent
3cf27a654a
commit
0443affe17
1 changed files with 4 additions and 4 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue