haskell-gtk3: fix build by adding the missing pkgs.gtk3 build input

The entry in hackage-packages.nix isn't generated correctly: https://github.com/NixOS/cabal2nix/issues/145.

Fixes https://github.com/NixOS/nixpkgs/issues/6190.
This commit is contained in:
Peter Simons
2015-02-06 13:59:57 +01:00
parent 3f9bec6e05
commit 88c8c7662c
2 changed files with 2 additions and 2 deletions
@@ -151,8 +151,9 @@ self: super: {
wizards = doJailbreak super.wizards;
# https://github.com/NixOS/cabal2nix/issues/136
gtk = addBuildDepends super.gtk [pkgs.pkgconfig pkgs.gtk];
glib = addBuildDepends super.glib [pkgs.pkgconfig pkgs.glib];
gtk3 = super.gtk3.override { inherit (pkgs) gtk3; };
gtk = addBuildDepends super.gtk [pkgs.pkgconfig pkgs.gtk];
# https://github.com/jgm/zip-archive/issues/21
zip-archive = addBuildTool super.zip-archive pkgs.zip;