3
0
Fork 0
forked from mirrors/nixpkgs

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

This commit is contained in:
Peter Simons 2014-08-12 11:16:18 +02:00
parent 27c17fb451
commit 423d60cdad

View file

@ -15,6 +15,6 @@ cabal.mkDerivation (self: {
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the Webkit library";
license = self.stdenv.lib.licenses.lgpl21;
platforms = self.ghc.meta.platforms;
platforms = self.stdenv.lib.platforms.linux;
};
})