libassuan: Fix propagated build inputs

+6 -1
+6 -1
pkgs/development/libraries/libassuan/default.nix
··· 8 8 sha256 = "1ikf9whfi7rg71qa610ynyv12qrw20zkn7zxgvvr9dp41gbqxxbx"; 9 9 }; 10 10 11 - propagatedBuildInputs = [ libgpgerror pth ]; 11 + buildInputs = [ libgpgerror pth ]; 12 12 13 13 doCheck = true; 14 + 15 + # Make sure includes are fixed for callers who don't use libassuan-config 16 + postInstall = '' 17 + sed -i 's,#include <gpg-error.h>,#include "${libgpgerror}/include/gpg-error.h",g' $out/include/assuan.h 18 + ''; 14 19 15 20 meta = { 16 21 description = "IPC library used by GnuPG and related software";