From 3f6023dd167712df8448d1d26074eabc906f7156 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 23 Mar 2016 08:04:36 -0500 Subject: [PATCH] codeblocks: ad libX11 build dependency to fix hydra build http://hydra.nixos.org/build/33296816/nixlog/1 --- pkgs/applications/editors/codeblocks/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/codeblocks/default.nix b/pkgs/applications/editors/codeblocks/default.nix index 53b7b5750a0..3243dbf9f50 100644 --- a/pkgs/applications/editors/codeblocks/default.nix +++ b/pkgs/applications/editors/codeblocks/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, file, zip, wxGTK, gtk -, contribPlugins ? false, hunspell, gamin, boost +, contribPlugins ? false, hunspell, gamin, boost, libX11 }: with { inherit (stdenv.lib) optionalString optional optionals; }; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { sha256 = "044njhps4cm1ijfdyr5f9wjyd0vblhrz9b4603ma52wcdq25093p"; }; - buildInputs = [ automake autoconf libtool pkgconfig file zip wxGTK gtk ] + buildInputs = [ automake autoconf libtool pkgconfig file zip wxGTK gtk libX11 ] ++ optionals contribPlugins [ hunspell gamin boost ]; enableParallelBuilding = true; patches = [ ./writable-projects.patch ];