python310Packages.notmuch2: fix cross compilation
This commit is contained in:
parent
c2f2239d92
commit
cecd3613bb
1 changed files with 6 additions and 2 deletions
|
@ -1,6 +1,5 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
|
||||
, buildPythonPackage
|
||||
, notmuch
|
||||
, python
|
||||
|
@ -13,7 +12,12 @@ buildPythonPackage {
|
|||
|
||||
sourceRoot = "notmuch-${notmuch.version}/bindings/python-cffi";
|
||||
|
||||
buildInputs = [ python notmuch cffi ];
|
||||
nativeBuildInputs = [
|
||||
cffi
|
||||
];
|
||||
buildInputs = [
|
||||
python notmuch cffi
|
||||
];
|
||||
|
||||
# since notmuch 0.35, this package expects _notmuch_config.py that is
|
||||
# generated by notmuch's configure script
|
||||
|
|
Loading…
Reference in a new issue