We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b654ff5 commit ce8e2c9Copy full SHA for ce8e2c9
pkgs/by-name/li/libapparmor/package.nix
@@ -12,7 +12,11 @@
12
stdenv.hostPlatform == stdenv.buildPlatform && lib.meta.availableOn stdenv.hostPlatform perl,
13
perl,
14
withPython ?
15
- !stdenv.hostPlatform.isStatic && lib.meta.availableOn stdenv.hostPlatform python3Packages.python,
+ # static can't load python libraries
16
+ !stdenv.hostPlatform.isStatic
17
+ && lib.meta.availableOn stdenv.hostPlatform python3Packages.python
18
+ # m4 python include script fails if cpu bit depth is different across machines
19
+ && stdenv.hostPlatform.parsed.cpu.bits == stdenv.buildPlatform.parsed.cpu.bits,
20
python3Packages,
21
swig,
22
ncurses,
0 commit comments