From 8ae21a85cc90640dbb3ab7ccdd0deb58a7aa2e33 Mon Sep 17 00:00:00 2001 From: Wisut Hantanong Date: Fri, 4 Jan 2019 15:13:36 +0700 Subject: [PATCH] haskellPackage.greenclip: add missing dependency (xdmcp) (#53388) fixes #53336 --- pkgs/development/haskell-modules/configuration-nix.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index f0d629ad5e44..62f2782e8f77 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -322,6 +322,9 @@ self: super: builtins.intersectAttrs super { # https://github.com/bos/pcap/issues/5 pcap = addExtraLibrary super.pcap pkgs.libpcap; + # https://github.com/NixOS/nixpkgs/issues/53336 + greenclip = addExtraLibrary super.greenclip pkgs.xorg.libXdmcp; + # The cabal files for these libraries do not list the required system dependencies. miniball = overrideCabal super.miniball (drv: { librarySystemDepends = [ pkgs.miniball ];