tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libassuan: Fix propagated build inputs
William A. Kennington III
10 years ago
56366679
a71f78ac
+6
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libassuan
default.nix
+6
-1
pkgs/development/libraries/libassuan/default.nix
···
8
8
sha256 = "1ikf9whfi7rg71qa610ynyv12qrw20zkn7zxgvvr9dp41gbqxxbx";
9
9
};
10
10
11
11
-
propagatedBuildInputs = [ libgpgerror pth ];
11
11
+
buildInputs = [ libgpgerror pth ];
12
12
13
13
doCheck = true;
14
14
+
15
15
+
# Make sure includes are fixed for callers who don't use libassuan-config
16
16
+
postInstall = ''
17
17
+
sed -i 's,#include <gpg-error.h>,#include "${libgpgerror}/include/gpg-error.h",g' $out/include/assuan.h
18
18
+
'';
14
19
15
20
meta = {
16
21
description = "IPC library used by GnuPG and related software";