1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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;
};
})