treewide: fix double quoted strings in meta.description
Signed-off-by: Ben Siraphob <bensiraphob@gmail.com>
This commit is contained in:
@@ -90,26 +90,26 @@ stdenv.mkDerivation rec {
|
||||
./fix_compilation_on_gcc7.patch
|
||||
] ++ lib.optional stdenv.cc.isClang [ ./update_clang_cvtsh_bugfix.patch ];
|
||||
|
||||
cmakeFlags = [ ''-DBUILD_TEST=OFF''
|
||||
''-DBUILD_PYTHON=ON''
|
||||
''-DUSE_CUDA=${if useCuda then ''ON''else ''OFF''}''
|
||||
''-DUSE_OPENMP=${if useOpenmp then ''ON''else ''OFF''}''
|
||||
''-DUSE_OPENCV=${if useOpencv3 then ''ON''else ''OFF''}''
|
||||
''-DUSE_MPI=${if useMpi then ''ON''else ''OFF''}''
|
||||
''-DUSE_LEVELDB=${if useLeveldb then ''ON''else ''OFF''}''
|
||||
''-DUSE_LMDB=${if useLmdb then ''ON''else ''OFF''}''
|
||||
''-DUSE_ROCKSDB=${if useRocksdb then ''ON''else ''OFF''}''
|
||||
''-DUSE_ZMQ=${if useZeromq then ''ON''else ''OFF''}''
|
||||
''-DUSE_GLOO=OFF''
|
||||
''-DUSE_NNPACK=OFF''
|
||||
''-DUSE_NCCL=OFF''
|
||||
''-DUSE_REDIS=OFF''
|
||||
''-DUSE_FFMPEG=OFF''
|
||||
cmakeFlags = [ "-DBUILD_TEST=OFF"
|
||||
"-DBUILD_PYTHON=ON"
|
||||
''-DUSE_CUDA=${if useCuda then "ON"else "OFF"}''
|
||||
''-DUSE_OPENMP=${if useOpenmp then "ON"else "OFF"}''
|
||||
''-DUSE_OPENCV=${if useOpencv3 then "ON"else "OFF"}''
|
||||
''-DUSE_MPI=${if useMpi then "ON"else "OFF"}''
|
||||
''-DUSE_LEVELDB=${if useLeveldb then "ON"else "OFF"}''
|
||||
''-DUSE_LMDB=${if useLmdb then "ON"else "OFF"}''
|
||||
''-DUSE_ROCKSDB=${if useRocksdb then "ON"else "OFF"}''
|
||||
''-DUSE_ZMQ=${if useZeromq then "ON"else "OFF"}''
|
||||
"-DUSE_GLOO=OFF"
|
||||
"-DUSE_NNPACK=OFF"
|
||||
"-DUSE_NCCL=OFF"
|
||||
"-DUSE_REDIS=OFF"
|
||||
"-DUSE_FFMPEG=OFF"
|
||||
]
|
||||
++ lib.optional useCuda [
|
||||
''-DCUDA_TOOLKIT_ROOT_DIR=${cudatoolkit}''
|
||||
''-DCUDA_FAST_MATH=ON''
|
||||
''-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/gcc''
|
||||
"-DCUDA_TOOLKIT_ROOT_DIR=${cudatoolkit}"
|
||||
"-DCUDA_FAST_MATH=ON"
|
||||
"-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/gcc"
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
|
||||
Reference in New Issue
Block a user