mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
overrides: add coincurve
This commit is contained in:
parent
33b5419aa6
commit
caad636c27
1 changed files with 11 additions and 0 deletions
|
@ -237,6 +237,17 @@ lib.composeManyExtensions [
|
|||
}
|
||||
);
|
||||
|
||||
coincurve = super.coincurve.overridePythonAttrs (
|
||||
old: {
|
||||
# package setup logic
|
||||
LIB_DIR = "${lib.getLib pkgs.secp256k1}/lib";
|
||||
|
||||
# for actual C toolchain build
|
||||
NIX_CFLAGS_COMPILE = "-I ${lib.getDev pkgs.secp256k1}/include";
|
||||
NIX_LDFLAGS = "-L ${lib.getLib pkgs.secp256k1}/lib";
|
||||
}
|
||||
);
|
||||
|
||||
configparser = super.configparser.overridePythonAttrs (
|
||||
old: {
|
||||
buildInputs = (old.buildInputs or [ ]) ++ [
|
||||
|
|
Loading…
Add table
Reference in a new issue