libassuan: Fix propagated build inputs
This commit is contained in:
parent
a71f78acf7
commit
56366679cf
|
@ -8,10 +8,15 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1ikf9whfi7rg71qa610ynyv12qrw20zkn7zxgvvr9dp41gbqxxbx";
|
sha256 = "1ikf9whfi7rg71qa610ynyv12qrw20zkn7zxgvvr9dp41gbqxxbx";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ libgpgerror pth ];
|
buildInputs = [ libgpgerror pth ];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
|
# Make sure includes are fixed for callers who don't use libassuan-config
|
||||||
|
postInstall = ''
|
||||||
|
sed -i 's,#include <gpg-error.h>,#include "${libgpgerror}/include/gpg-error.h",g' $out/include/assuan.h
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "IPC library used by GnuPG and related software";
|
description = "IPC library used by GnuPG and related software";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue