diff options
| author | Will Dietz <w@wdtz.org> | 2016-10-30 13:34:42 -0500 |
|---|---|---|
| committer | Will Dietz <w@wdtz.org> | 2016-10-30 13:38:07 -0500 |
| commit | 0443affe1709d29e3ae3c7b3080df096f020018e (patch) | |
| tree | bebecac0dc132961f9408b607fa7d588eb6d745d | |
| parent | yices: Build in parallel, run tests, fix test shebang. (diff) | |
| download | nixpkgs-0443affe1709d29e3ae3c7b3080df096f020018e.tar.gz | |
yices: Add darwin to meta.platforms
| -rw-r--r-- | pkgs/applications/science/logic/yices/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/science/logic/yices/default.nix b/pkgs/applications/science/logic/yices/default.nix index 7ad8080a9f8f..cf5114b4a417 100644 --- a/pkgs/applications/science/logic/yices/default.nix +++ b/pkgs/applications/science/logic/yices/default.nix @@ -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 ]; }; } |
