From 56366679cf2d7bda7ad20f179094ac205ab7faa9 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Fri, 1 May 2015 17:47:23 -0700 Subject: [PATCH] libassuan: Fix propagated build inputs --- pkgs/development/libraries/libassuan/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libassuan/default.nix b/pkgs/development/libraries/libassuan/default.nix index e625334cefa..5202ad83605 100644 --- a/pkgs/development/libraries/libassuan/default.nix +++ b/pkgs/development/libraries/libassuan/default.nix @@ -8,10 +8,15 @@ stdenv.mkDerivation rec { sha256 = "1ikf9whfi7rg71qa610ynyv12qrw20zkn7zxgvvr9dp41gbqxxbx"; }; - propagatedBuildInputs = [ libgpgerror pth ]; + buildInputs = [ libgpgerror pth ]; doCheck = true; + # Make sure includes are fixed for callers who don't use libassuan-config + postInstall = '' + sed -i 's,#include ,#include "${libgpgerror}/include/gpg-error.h",g' $out/include/assuan.h + ''; + meta = { description = "IPC library used by GnuPG and related software";