Don't build some packages on some platforms

This commit is contained in:
Eelco Dolstra
2013-11-04 21:11:00 +01:00
parent 0296defd0c
commit 01087750ba
9 changed files with 16 additions and 11 deletions
@@ -77,6 +77,6 @@ stdenv.mkDerivation rec {
description = "A version control system intended to be a compelling replacement for CVS in the open source community";
homepage = http://subversion.apache.org/;
maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ];
platforms = stdenv.lib.platforms.all;
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
};
}