lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

opae: use python3

Also brings it closer to building again. Currently fails with:

```
CMake Error at platforms/scripts/cmake_install.cmake:54 (file):
file INSTALL cannot find "/build/source/build/bin/afu_platform_config": No
such file or directory.
Call Stack (most recent call first):
platforms/cmake_install.cmake:55 (include)
cmake_install.cmake:58 (include)

make: *** [Makefile:120: install] Error 1
```

+4 -3
+4 -3
pkgs/development/libraries/opae/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake 2 2 , libuuid, json_c 3 - , doxygen, perl, python2, python2Packages 3 + , doxygen, perl, python3 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { ··· 23 23 NIX_CFLAGS_COMPILE = [ 24 24 "-Wno-error=format-truncation" 25 25 "-Wno-error=address-of-packed-member" 26 + "-Wno-array-bounds" 26 27 ]; 27 28 28 - nativeBuildInputs = [ cmake doxygen perl python2Packages.sphinx ]; 29 - buildInputs = [ libuuid json_c python2 ]; 29 + nativeBuildInputs = [ cmake doxygen perl python3.pkgs.sphinx ]; 30 + buildInputs = [ libuuid json_c python3 ]; 30 31 31 32 # Set the Epoch to 1980; otherwise the Python wheel/zip code 32 33 # gets very angry