haskell-vcsgui: restrict meta.platforms to Linux; we cannot build that package on Darwin

This commit is contained in:
Peter Simons 2014-08-12 11:16:31 +02:00
parent 423d60cdad
commit 9d31b223fe

View File

@ -13,6 +13,6 @@ cabal.mkDerivation (self: {
homepage = "https://github.com/forste/haskellVCSGUI";
description = "GUI library for source code management systems";
license = "GPL";
platforms = self.ghc.meta.platforms;
platforms = self.stdenv.lib.platforms.linux;
};
})