default-crate-overrides.nix: add pango-sys (#190604)

This commit is contained in:
Adam Joseph 2022-12-27 17:36:30 +00:00 committed by GitHub
parent 88eb7d5d3f
commit b1a9bf530c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,6 +22,7 @@
, clang
, llvmPackages
, linux-pam
, pango
, cmake
, glib
, freetype
@ -170,6 +171,11 @@ in
buildInputs = [ linux-pam ];
};
pango-sys = attr: {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ pango ];
};
pq-sys = attr: {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ postgresql ];