Merge pull request #3503 from lethalman/platforms

Make platforms.allBut accept a list rather than a single platform
This commit is contained in:
lethalman
2014-08-09 14:22:09 +02:00
12 changed files with 22 additions and 22 deletions

View File

@@ -24,7 +24,7 @@ stdenv.mkDerivation {
homepage = http://www.call-cc.org/;
license = "BSD";
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
platforms = stdenv.lib.platforms.allBut "x86_64-darwin";
platforms = with stdenv.lib.platforms; allBut darwin;
description = "A portable compiler for the Scheme programming language";
longDescription = ''
CHICKEN is a compiler for the Scheme programming language.