Merge pull request #108300 from siraben/parallel-cmake

treewide: remove enableParallelBuilding = true if using cmake

authored by John Ericson and committed by GitHub b03fdcc7 108d9ec3

+15 -724
-2
pkgs/applications/audio/cantata/default.nix
··· 75 75 76 76 nativeBuildInputs = [ cmake pkgconfig qttools ]; 77 77 78 - enableParallelBuilding = true; 79 - 80 78 cmakeFlags = lib.flatten [ 81 79 (fstats withTaglib [ "TAGLIB" "TAGLIB_EXTRAS" ]) 82 80 (fstats withReplaygain [ "FFMPEG" "MPG123" "SPEEXDSP" ])
+1 -3
pkgs/applications/audio/clementine/default.nix
··· 79 79 "-DSPOTIFY_BLOB=OFF" 80 80 ]; 81 81 82 - enableParallelBuilding = true; 83 - 84 82 passthru.unfree = unfree; 85 83 86 84 postInstall = '' ··· 122 120 ln -s "${free}/share/$dir" "$out/share/$dir" 123 121 done 124 122 ''; 125 - enableParallelBuilding = true; 123 + 126 124 meta = with stdenv.lib; { 127 125 homepage = "https://www.clementine-player.org"; 128 126 description = "Spotify integration for Clementine";
-2
pkgs/applications/audio/csound/default.nix
··· 19 19 # version and remove fluidsynth 1.x from nixpkgs again. 20 20 version = "6.15.0"; 21 21 22 - enableParallelBuilding = true; 23 - 24 22 hardeningDisable = [ "format" ]; 25 23 26 24 src = fetchFromGitHub {
-2
pkgs/applications/audio/kid3/default.nix
··· 28 28 export DOCBOOKDIR="${docbook_xsl}/xml/xsl/docbook/" 29 29 ''; 30 30 31 - enableParallelBuilding = true; 32 - 33 31 meta = with stdenv.lib; { 34 32 description = "A simple and powerful audio tag editor"; 35 33 longDescription = ''
-1
pkgs/applications/audio/lmms/default.nix
··· 37 37 ]; 38 38 39 39 cmakeFlags = [ "-DWANT_QT5=ON" ]; 40 - enableParallelBuilding = true; 41 40 42 41 meta = with stdenv.lib; { 43 42 description = "DAW similar to FL Studio (music production software)";
-2
pkgs/applications/audio/qmmp/default.nix
··· 51 51 libsamplerate 52 52 ]; 53 53 54 - enableParallelBuilding = true; 55 - 56 54 meta = with stdenv.lib; { 57 55 description = "Qt-based audio player that looks like Winamp"; 58 56 homepage = "http://qmmp.ylsoftware.com/";
-2
pkgs/applications/audio/radiotray-ng/default.nix
··· 80 80 "-DBUILD_TESTS=${if doCheck then "ON" else "OFF"}" 81 81 ]; 82 82 83 - enableParallelBuilding = true; 84 - 85 83 checkInputs = [ gtest ]; 86 84 doCheck = !stdenv.isAarch64; # single failure that I can't explain 87 85
-2
pkgs/applications/audio/rosegarden/default.nix
··· 33 33 alsaLib 34 34 ]; 35 35 36 - enableParallelBuilding = true; 37 - 38 36 meta = with stdenv.lib; { 39 37 homepage = "https://www.rosegardenmusic.com/"; 40 38 description = "Music composition and editing environment";
+1 -1
pkgs/applications/audio/soundkonverter/default.nix
··· 62 62 stripLen = 1; 63 63 }) 64 64 ]; 65 - enableParallelBuilding = true; 65 + 66 66 nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig kdelibs4support makeWrapper ]; 67 67 propagatedBuildInputs = [ libkcddb kconfig kconfigwidgets ki18n kdelibs4support kio solid kwidgetsaddons kxmlgui qtbase phonon]; 68 68 buildInputs = [ taglib ] ++ runtimeDeps;
-1
pkgs/applications/audio/traverso/default.nix
··· 18 18 19 19 cmakeFlags = [ "-DWANT_PORTAUDIO=1" "-DWANT_PULSEAUDIO=1" "-DWANT_MP3_ENCODE=1" "-DWANT_LV2=0" ]; 20 20 21 - enableParallelBuilding = true; 22 21 hardeningDisable = [ "format" ]; 23 22 24 23 meta = with stdenv.lib; {
-2
pkgs/applications/blockchains/bitcoin-abc.nix
··· 32 32 find ./. -type f -iname "*.sh" -exec chmod +x {} \; 33 33 ''; 34 34 35 - enableParallelBuilding = true; 36 - 37 35 meta = { 38 36 description = "Peer-to-peer electronic cash system (Cash client)"; 39 37 longDescription= ''
-2
pkgs/applications/blockchains/dero.nix
··· 15 15 nativeBuildInputs = [ cmake pkgconfig ]; 16 16 buildInputs = [ boost miniupnpc openssl lmdb unbound readline ]; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 meta = with lib; { 21 19 description = "Secure, private blockchain with smart contracts based on Monero"; 22 20 homepage = "https://dero.io/";
-2
pkgs/applications/blockchains/masari.nix
··· 15 15 nativeBuildInputs = [ cmake pkgconfig ]; 16 16 buildInputs = [ boost miniupnpc openssl lmdb unbound readline ]; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 meta = with lib; { 21 19 description = "scalability-focused, untraceable, secure, and fungible cryptocurrency using the RingCT protocol"; 22 20 homepage = "https://www.getmasari.org/";
-2
pkgs/applications/blockchains/sumokoin.nix
··· 23 23 "-DLMDB_INCLUDE=${lmdb}/include" 24 24 ]; 25 25 26 - enableParallelBuilding = true; 27 - 28 26 meta = with lib; { 29 27 description = "A fork of Monero and a truely fungible cryptocurrency"; 30 28 homepage = "https://www.sumokoin.org/";
-2
pkgs/applications/editors/aseprite/default.nix
··· 96 96 rm -rf "$out"/include "$out"/lib 97 97 ''; 98 98 99 - enableParallelBuilding = true; 100 - 101 99 passthru = { inherit skia; }; 102 100 103 101 meta = with lib; {
-1
pkgs/applications/editors/neovim/default.nix
··· 48 48 ]; 49 49 50 50 dontFixCmake = true; 51 - enableParallelBuilding = true; 52 51 53 52 buildInputs = [ 54 53 gperf
-2
pkgs/applications/editors/neovim/qt.nix
··· 27 27 28 28 nativeBuildInputs = [ cmake doxygen ]; 29 29 30 - enableParallelBuilding = true; 31 - 32 30 preCheck = '' 33 31 # The GUI tests require a running X server, disable them 34 32 sed -i ../test/CMakeLists.txt \
-2
pkgs/applications/editors/rstudio/default.nix
··· 109 109 popd 110 110 ''; 111 111 112 - enableParallelBuilding = true; 113 - 114 112 cmakeFlags = [ "-DRSTUDIO_TARGET=Desktop" "-DQT_QMAKE_EXECUTABLE=$NIX_QT5_TMP/bin/qmake" ]; 115 113 116 114 desktopItem = makeDesktopItem {
-2
pkgs/applications/editors/sigil/default.nix
··· 36 36 ''${qtWrapperArgs[@]} 37 37 ''; 38 38 39 - enableParallelBuilding = true; 40 - 41 39 meta = with stdenv.lib; { 42 40 description = "Free, open source, multi-platform ebook (ePub) editor"; 43 41 homepage = "https://github.com/Sigil-Ebook/Sigil/";
-2
pkgs/applications/editors/texmacs/default.nix
··· 31 31 sha256 = "04585hdh98fvyhj4wsxf69xal2wvfa6lg76gad8pr6ww9abi5105"; 32 32 }; 33 33 34 - enableParallelBuilding = true; 35 - 36 34 nativeBuildInputs = [ cmake pkgconfig ]; 37 35 buildInputs = [ 38 36 guile_1_8
-2
pkgs/applications/graphics/antimony/default.nix
··· 40 40 "-DGITBRANCH=${gitBranch}" 41 41 ]; 42 42 43 - enableParallelBuilding = true; 44 - 45 43 meta = with stdenv.lib; { 46 44 description = "A computer-aided design (CAD) tool from a parallel universe"; 47 45 homepage = "https://github.com/mkeeter/antimony";
-2
pkgs/applications/graphics/digikam/default.nix
··· 109 109 threadweaver 110 110 ]; 111 111 112 - enableParallelBuilding = true; 113 - 114 112 cmakeFlags = [ 115 113 "-DENABLE_MYSQLSUPPORT=1" 116 114 "-DENABLE_INTERNALMYSQL=1"
-2
pkgs/applications/graphics/hugin/default.nix
··· 31 31 # disable installation of the python scripting interface 32 32 cmakeFlags = [ "-DBUILD_HSI:BOOl=OFF" ]; 33 33 34 - enableParallelBuilding = true; 35 - 36 34 NIX_CFLAGS_COMPILE = "-I${ilmbase.dev}/include/OpenEXR"; 37 35 38 36 postInstall = ''
-2
pkgs/applications/graphics/kgraphviewer/default.nix
··· 27 27 kconfig kinit kio kparts kwidgetsaddons 28 28 ]; 29 29 30 - enableParallelBuilding = true; 31 - 32 30 meta = with stdenv.lib; { 33 31 description = "A Graphviz dot graph viewer for KDE"; 34 32 license = licenses.gpl2;
-2
pkgs/applications/graphics/meshlab/default.nix
··· 84 84 # | 85 85 hardeningDisable = [ "format" ]; 86 86 87 - enableParallelBuilding = true; 88 - 89 87 meta = { 90 88 description = "A system for processing and editing 3D triangular meshes"; 91 89 homepage = "https://www.meshlab.net/";
-2
pkgs/applications/graphics/nomacs/default.nix
··· 27 27 sha256 = "1bq7bv4p7w67172y893lvpk90d6fgdpnylynbj2kn8m2hs6khya4"; 28 28 }; 29 29 30 - enableParallelBuilding = true; 31 - 32 30 setSourceRoot = '' 33 31 sourceRoot=$(echo */ImageLounge) 34 32 '';
-2
pkgs/applications/graphics/photivo/default.nix
··· 32 32 33 33 buildInputs = [ qt4 fftw graphicsmagick_q16 lcms2 lensfun libjpeg exiv2 liblqr1 ]; 34 34 35 - enableParallelBuilding = true; 36 - 37 35 meta = with stdenv.lib; { 38 36 platforms = platforms.linux; 39 37 license = licenses.gpl3;
-2
pkgs/applications/graphics/photoqt/default.nix
··· 37 37 export MAGICK_LOCATION="${graphicsmagick}/include/GraphicsMagick" 38 38 ''; 39 39 40 - enableParallelBuilding = true; 41 - 42 40 meta = { 43 41 homepage = "https://photoqt.org/"; 44 42 description = "Simple, yet powerful and good looking image viewer";
-2
pkgs/applications/graphics/rawtherapee/default.nix
··· 32 32 echo "set(HG_VERSION $version)" > $sourceRoot/ReleaseInfo.cmake 33 33 ''; 34 34 35 - enableParallelBuilding = true; 36 - 37 35 meta = { 38 36 description = "RAW converter and digital photo processing software"; 39 37 homepage = "http://www.rawtherapee.com/";
-2
pkgs/applications/graphics/renderdoc/default.nix
··· 61 61 addOpenGLRunpath $out/lib/librenderdoc.so 62 62 ''; 63 63 64 - enableParallelBuilding = true; 65 - 66 64 meta = with stdenv.lib; { 67 65 description = "A single-frame graphics debugger"; 68 66 homepage = "https://renderdoc.org/";
-2
pkgs/applications/graphics/scantailor/default.nix
··· 11 11 nativeBuildInputs = [ cmake ]; 12 12 buildInputs = [ qt4 libjpeg libtiff boost ]; 13 13 14 - enableParallelBuilding = true; 15 - 16 14 meta = { 17 15 homepage = "http://scantailor.org/"; 18 16 description = "Interactive post-processing tool for scanned pages";
-1
pkgs/applications/graphics/solvespace/default.nix
··· 20 20 json_c fontconfig gtkmm3 pangomm glew libGLU 21 21 xorg.libpthreadstubs xorg.libXdmcp pcre 22 22 ]; 23 - enableParallelBuilding = true; 24 23 25 24 preConfigure = '' 26 25 patch CMakeLists.txt <<EOF
-2
pkgs/applications/misc/albert/default.nix
··· 18 18 19 19 buildInputs = [ qtbase qtdeclarative qtsvg qtx11extras muparser python3 qtcharts ]; 20 20 21 - enableParallelBuilding = true; 22 - 23 21 # We don't have virtualbox sdk so disable plugin 24 22 cmakeFlags = [ "-DBUILD_VIRTUALBOX=OFF" "-DCMAKE_INSTALL_LIBDIR=libs" ]; 25 23
-2
pkgs/applications/misc/blender/default.nix
··· 119 119 # libstdc++ in our RPATH. Sigh. 120 120 NIX_LDFLAGS = optionalString cudaSupport "-rpath ${stdenv.cc.cc.lib}/lib"; 121 121 122 - enableParallelBuilding = true; 123 - 124 122 blenderExecutable = 125 123 placeholder "out" + (if stdenv.isDarwin then "/Blender.app/Contents/MacOS/Blender" else "/bin/blender"); 126 124 # --python-expr is used to workaround https://developer.blender.org/T74304
-2
pkgs/applications/misc/elf-dissector/default.nix
··· 15 15 16 16 buildInputs = [ kitemmodels libiberty libelf libdwarf libopcodes ]; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 meta = with lib; { 21 19 homepage = "https://invent.kde.org/sdk/elf-dissector"; 22 20 description = "Tools for inspecting, analyzing and optimizing ELF files";
-2
pkgs/applications/misc/far2l/default.nix
··· 76 76 77 77 stripDebugList = [ "bin" "share" ]; 78 78 79 - enableParallelBuilding = true; 80 - 81 79 meta = with stdenv.lib; { 82 80 description = "An orthodox file manager"; 83 81 homepage = "https://github.com/elfmz/far2l";
-2
pkgs/applications/misc/gammu/default.nix
··· 25 25 ++ optionals dbiSupport [ libdbi libdbiDrivers ] 26 26 ++ optionals postgresSupport [ postgresql ]; 27 27 28 - enableParallelBuilding = true; 29 - 30 28 meta = { 31 29 homepage = "https://wammu.eu/gammu/"; 32 30 description = "Command line utility and library to control mobile phones";
-2
pkgs/applications/misc/lenmus/default.nix
··· 16 16 sha256 = "1n639xr1qxx6rhqs0c6sjxp3bv8cwkmw1vfk1cji7514gj2a9v3p"; 17 17 }; 18 18 19 - enableParallelBuilding = true; 20 - 21 19 patches = [ 22 20 (fetchpatch { 23 21 url = "https://github.com/lenmus/lenmus/commit/421760d84694a0e6e72d0e9b1d4fd30a7e129c6f.patch";
-2
pkgs/applications/misc/opentx/default.nix
··· 15 15 sha256 = "1pp3k1802gl1rji98clv17wj0619dliq821mpi4446lk22q692yq"; 16 16 }; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 nativeBuildInputs = [ cmake gcc-arm-embedded python3Packages.pillow ]; 21 19 22 20 buildInputs = [ qtbase qtmultimedia qttranslations SDL ];
-2
pkgs/applications/misc/prusa-slicer/default.nix
··· 7 7 pname = "prusa-slicer"; 8 8 version = "2.2.0"; 9 9 10 - enableParallelBuilding = true; 11 - 12 10 nativeBuildInputs = [ 13 11 cmake 14 12 pkgconfig
-1
pkgs/applications/misc/pwsafe/default.nix
··· 29 29 "-DNO_GTEST=ON" 30 30 "-DCMAKE_CXX_FLAGS=-I${yubikey-personalization}/include/ykpers-1" 31 31 ]; 32 - enableParallelBuilding = true; 33 32 34 33 postPatch = '' 35 34 # Fix perl scripts used during the build.
-2
pkgs/applications/misc/qlandkartegt/default.nix
··· 63 63 "-DEXIF_INCLUDE_DIRS=${libexif}/include" 64 64 ]; 65 65 66 - enableParallelBuilding = true; 67 - 68 66 postPatch = '' 69 67 substituteInPlace ConfigureChecks.cmake \ 70 68 --replace \$\{PLUGIN_INSTALL_DIR\} "${garmindev}/lib/qlandkartegt"
-2
pkgs/applications/misc/qlandkartegt/garmindev.nix
··· 13 13 14 14 buildInputs = [ libusb-compat-0_1 ]; 15 15 16 - enableParallelBuilding = true; 17 - 18 16 meta = with stdenv.lib; { 19 17 homepage = "http://www.qlandkarte.org/"; 20 18 description = "Garmin Device Drivers for QlandkarteGT";
-2
pkgs/applications/misc/qolibri/default.nix
··· 17 17 libeb lzo qtbase qtmultimedia qttools qtwebengine 18 18 ]; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 meta = with lib; { 23 21 homepage = "https://github.com/ludios/qolibri"; 24 22 description = "EPWING reader for viewing Japanese dictionaries";
-2
pkgs/applications/misc/qsyncthingtray/default.nix
··· 53 53 runHook postInstall 54 54 ''; 55 55 56 - enableParallelBuilding = true; 57 - 58 56 meta = with lib; { 59 57 homepage = "https://github.com/sieren/QSyncthingTray/"; 60 58 description = "A Traybar Application for Syncthing written in C++";
-2
pkgs/applications/misc/slade/default.nix
··· 14 14 nativeBuildInputs = [ cmake pkgconfig zip ]; 15 15 buildInputs = [ wxGTK gtk2 sfml fluidsynth curl freeimage ftgl glew ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 meta = with stdenv.lib; { 20 18 description = "Doom editor"; 21 19 homepage = "http://slade.mancubus.net/";
-2
pkgs/applications/misc/slade/git.nix
··· 14 14 nativeBuildInputs = [ cmake pkgconfig zip ]; 15 15 buildInputs = [ wxGTK gtk2 sfml fluidsynth curl freeimage ftgl glew ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 meta = with stdenv.lib; { 20 18 description = "Doom editor"; 21 19 homepage = "http://slade.mancubus.net/";
-2
pkgs/applications/misc/subsurface/default.nix
··· 91 91 "-DNO_PRINTING=OFF" 92 92 ]; 93 93 94 - enableParallelBuilding = true; 95 - 96 94 passthru = { inherit version libdc googlemaps; }; 97 95 98 96 meta = with stdenv.lib; {
-2
pkgs/applications/misc/tasksh/default.nix
··· 4 4 pname = "tasksh"; 5 5 version = "1.2.0"; 6 6 7 - enableParallelBuilding = true; 8 - 9 7 src = fetchurl { 10 8 url = "https://taskwarrior.org/download/${pname}-${version}.tar.gz"; 11 9 sha256 = "1z8zw8lld62fjafjvy248dncjk0i4fwygw0ahzjdvyyppx4zjhkf";
-2
pkgs/applications/misc/timewarrior/default.nix
··· 4 4 pname = "timewarrior"; 5 5 version = "1.4.2"; 6 6 7 - enableParallelBuilding = true; 8 - 9 7 src = fetchFromGitHub { 10 8 owner = "GothenburgBitFactory"; 11 9 repo = "timewarrior";
-2
pkgs/applications/misc/xsuspender/default.nix
··· 19 19 nativeBuildInputs = [ cmake pkgconfig makeWrapper ]; 20 20 buildInputs = [ glib libwnck3 ]; 21 21 22 - enableParallelBuilding = true; 23 - 24 22 postInstall = '' 25 23 wrapProgram $out/bin/xsuspender \ 26 24 --prefix PATH : "${makeBinPath [ procps ]}"
-2
pkgs/applications/networking/browsers/falkon/default.nix
··· 47 47 wrapQtAppsHook 48 48 ]; 49 49 50 - enableParallelBuilding = true; 51 - 52 50 meta = with stdenv.lib; { 53 51 description = "QtWebEngine based cross-platform web browser"; 54 52 homepage = "https://community.kde.org/Incubator/Projects/Falkon";
-2
pkgs/applications/networking/ids/zeek/default.nix
··· 35 35 #see issue https://github.com/zeek/zeek/issues/804 to modify hardlinking duplicate files. 36 36 inherit preConfigure; 37 37 38 - enableParallelBuilding = true; 39 - 40 38 patches = stdenv.lib.optionals stdenv.cc.isClang [ 41 39 # Fix pybind c++17 build with Clang. See: https://github.com/pybind/pybind11/issues/1604 42 40 (fetchpatch {
-1
pkgs/applications/networking/instant-messengers/psi/default.nix
··· 21 21 qtbase qtmultimedia qtx11extras qtwebengine 22 22 libidn qca-qt5 libXScrnSaver hunspell 23 23 ]; 24 - enableParallelBuilding = true; 25 24 26 25 meta = with lib; { 27 26 homepage = "https://psi-im.org";
-2
pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
··· 52 52 pcre xorg.libpthreadstubs xorg.libXdmcp util-linux libselinux libsepol epoxy at-spi2-core libXtst 53 53 ]; 54 54 55 - enableParallelBuilding = true; 56 - 57 55 cmakeFlags = [ 58 56 "-Ddisable_autoupdate=ON" 59 57 # We're allowed to used the API ID of the Snap package:
-2
pkgs/applications/networking/irc/quassel/default.nix
··· 49 49 ./0001-common-Disable-enum-type-stream-operators-for-Qt-5.1.patch 50 50 ]; 51 51 52 - enableParallelBuilding = true; 53 - 54 52 # Prevent ``undefined reference to `qt_version_tag''' in SSL check 55 53 NIX_CFLAGS_COMPILE = "-DQT_NO_VERSION_TAGGING=1"; 56 54
-2
pkgs/applications/networking/owncloud-client/default.nix
··· 21 21 "-DNO_SHIBBOLETH=1" 22 22 ]; 23 23 24 - enableParallelBuilding = true; 25 - 26 24 meta = with stdenv.lib; { 27 25 description = "Synchronise your ownCloud with your computer using this desktop client"; 28 26 homepage = "https://owncloud.org";
-2
pkgs/applications/networking/p2p/eiskaltdcpp/default.nix
··· 54 54 "-DWITH_LUASCRIPTS=ON" 55 55 ]; 56 56 57 - enableParallelBuilding = true; 58 - 59 57 meta = with stdenv.lib; { 60 58 description = "A cross-platform program that uses the Direct Connect and ADC protocols"; 61 59 homepage = "https://github.com/eiskaltdcpp/eiskaltdcpp";
-2
pkgs/applications/networking/p2p/ktorrent/default.nix
··· 22 22 libktorrent taglib libgcrypt kplotting 23 23 ]; 24 24 25 - enableParallelBuilding = true; 26 - 27 25 meta = with lib; { 28 26 description = "KDE integrated BtTorrent client"; 29 27 homepage = "https://www.kde.org/applications/internet/ktorrent/";
-2
pkgs/applications/networking/p2p/qbittorrent/default.nix
··· 44 44 else "qbittorrent-nox" 45 45 } --prefix PATH : ${makeBinPath [ python3 ]}"; 46 46 47 - enableParallelBuilding = true; 48 - 49 47 meta = { 50 48 description = "Featureful free software BitTorrent client"; 51 49 homepage = "https://www.qbittorrent.org/";
-2
pkgs/applications/networking/sniffers/wireshark/default.nix
··· 93 93 cp ../wiretap/*.h $dev/include/wiretap 94 94 ''); 95 95 96 - enableParallelBuilding = true; 97 - 98 96 dontFixCmake = true; 99 97 100 98 shellHook = ''
-2
pkgs/applications/office/gnucash/default.nix
··· 82 82 ''; 83 83 doCheck = false; 84 84 85 - enableParallelBuilding = true; 86 - 87 85 meta = { 88 86 description = "Personal and small-business financial-accounting application"; 89 87
-2
pkgs/applications/office/kmymoney/default.nix
··· 25 25 # Hidden dependency that wasn't included in CMakeLists.txt: 26 26 NIX_CFLAGS_COMPILE = "-I${kitemmodels.dev}/include/KF5"; 27 27 28 - enableParallelBuilding = true; 29 - 30 28 nativeBuildInputs = [ 31 29 doxygen extra-cmake-modules graphviz kdoctools python2 32 30 python3Packages.wrapPython wrapQtAppsHook
-2
pkgs/applications/office/ledger/default.nix
··· 21 21 22 22 nativeBuildInputs = [ cmake texinfo ]; 23 23 24 - enableParallelBuilding = true; 25 - 26 24 cmakeFlags = [ 27 25 "-DCMAKE_INSTALL_LIBDIR=lib" 28 26 "-DBUILD_DOCS:BOOL=ON"
-2
pkgs/applications/office/scribus/default.nix
··· 18 18 sha256 = "0bq433myw6h1siqlsakxv6ghb002rp3mfz5k12bg68s0k6skn992"; 19 19 }; 20 20 21 - enableParallelBuilding = true; 22 - 23 21 nativeBuildInputs = [ pkgconfig cmake ]; 24 22 buildInputs = with xorg; 25 23 [ freetype lcms libtiff libxml2 libart_lgpl qt4
-2
pkgs/applications/office/scribus/unstable.nix
··· 43 43 sha256 = "sha256-1CV2lVOc+kDerYq9rwTFHjTU10vK1aLJNNCObp1Dt6s="; 44 44 }; 45 45 46 - enableParallelBuilding = true; 47 - 48 46 nativeBuildInputs = [ 49 47 cmake 50 48 pkgconfig
-2
pkgs/applications/radio/dsd/default.nix
··· 21 21 mbelib libsndfile itpp 22 22 ] ++ stdenv.lib.optionals portaudioSupport [ portaudio ]; 23 23 24 - enableParallelBuilding = true; 25 - 26 24 doCheck = true; 27 25 preCheck = '' 28 26 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}$PWD
+2 -5
pkgs/applications/radio/gnss-sdr/default.nix
··· 8 8 , gflags 9 9 , gnuradio 10 10 , orc 11 - , pkgconfig 11 + , pkg-config 12 12 , pythonPackages 13 13 , uhd 14 14 , log4cpp ··· 29 29 sha256 = "0a3k47fl5dizzhbqbrbmckl636lznyjby2d2nz6fz21637hvrnby"; 30 30 }; 31 31 32 + nativeBuildInputs = [ cmake pkg-config ]; 32 33 buildInputs = [ 33 34 armadillo 34 35 boost.dev 35 - cmake 36 36 glog 37 37 gmock 38 38 openssl.dev 39 39 gflags 40 40 gnuradio 41 41 orc 42 - pkgconfig 43 42 pythonPackages.Mako 44 43 pythonPackages.six 45 44 ··· 52 51 pugixml 53 52 protobuf 54 53 ]; 55 - 56 - enableParallelBuilding = true; 57 54 58 55 cmakeFlags = [ 59 56 "-DGFlags_ROOT_DIR=${gflags}/lib"
-2
pkgs/applications/radio/gnuradio/ais.nix
··· 27 27 done 28 28 ''; 29 29 30 - enableParallelBuilding = true; 31 - 32 30 meta = with stdenv.lib; { 33 31 description = "Gnuradio block for ais"; 34 32 homepage = "https://github.com/bistromath/gr-ais";
-2
pkgs/applications/radio/gnuradio/gsm.nix
··· 27 27 done 28 28 ''; 29 29 30 - enableParallelBuilding = true; 31 - 32 30 meta = with stdenv.lib; { 33 31 description = "Gnuradio block for gsm"; 34 32 homepage = "https://github.com/ptrkrysik/gr-gsm";
-2
pkgs/applications/radio/gnuradio/limesdr.nix
··· 28 28 ] ++ stdenv.lib.optionals pythonSupport [ python ]; 29 29 30 30 31 - enableParallelBuilding = true; 32 - 33 31 meta = with stdenv.lib; { 34 32 description = "Gnuradio source and sink blocks for LimeSDR"; 35 33 homepage = "https://wiki.myriadrf.org/Gr-limesdr_Plugin_for_GNURadio";
-2
pkgs/applications/radio/gnuradio/nacl.nix
··· 27 27 done 28 28 ''; 29 29 30 - enableParallelBuilding = true; 31 - 32 30 meta = with stdenv.lib; { 33 31 description = "Gnuradio block for encryption"; 34 32 homepage = "https://github.com/stwunsch/gr-nacl";
-2
pkgs/applications/radio/gnuradio/osmosdr.nix
··· 35 35 done 36 36 ''; 37 37 38 - enableParallelBuilding = true; 39 - 40 38 meta = with stdenv.lib; { 41 39 description = "Gnuradio block for OsmoSDR and rtl-sdr"; 42 40 homepage = "https://sdr.osmocom.org/trac/wiki/GrOsmoSDR";
-2
pkgs/applications/radio/gnuradio/rds.nix
··· 26 26 done 27 27 ''; 28 28 29 - enableParallelBuilding = true; 30 - 31 29 meta = with stdenv.lib; { 32 30 description = "Gnuradio block for radio data system"; 33 31 homepage = "https://github.com/bastibl/gr-rds";
-2
pkgs/applications/radio/gqrx/default.nix
··· 23 23 qtbase qtsvg gnuradio boost gr-osmosdr rtl-sdr hackrf 24 24 ] ++ stdenv.lib.optionals pulseaudioSupport [ libpulseaudio ]; 25 25 26 - enableParallelBuilding = true; 27 - 28 26 postInstall = '' 29 27 install -vD $src/gqrx.desktop -t "$out/share/applications/" 30 28 install -vD $src/resources/icons/gqrx.svg -t "$out/share/pixmaps/"
-1
pkgs/applications/radio/svxlink/default.nix
··· 29 29 "-DRTLSDR_INCLUDE_DIRS=${rtl-sdr}/include" 30 30 "../src" 31 31 ]; 32 - enableParallelBuilding = true; 33 32 dontWrapQtApps = true; 34 33 35 34 nativeBuildInputs = [ cmake pkgconfig doxygen groff wrapQtAppsHook ];
-2
pkgs/applications/radio/uhd/default.nix
··· 54 54 sha256 = "1fir1a13ac07mqhm4sr34cixiqj2difxq0870qv1wr7a7cbfw6vp"; 55 55 }; 56 56 57 - enableParallelBuilding = true; 58 - 59 57 cmakeFlags = [ 60 58 "-DENABLE_LIBUHD=ON" 61 59 "-DENABLE_USB=ON"
-2
pkgs/applications/radio/welle-io/default.nix
··· 39 39 "-DRTLSDR=true" "-DSOAPYSDR=true" 40 40 ]; 41 41 42 - enableParallelBuilding = true; 43 - 44 42 meta = with lib; { 45 43 description = "A DAB/DAB+ Software Radio"; 46 44 homepage = "https://www.welle.io/";
-2
pkgs/applications/science/biology/EZminc/default.nix
··· 19 19 "-DEZMINC_BUILD_MRFSEG=TRUE" 20 20 "-DEZMINC_BUILD_DD=TRUE" ]; 21 21 22 - enableParallelBuilding = true; 23 - 24 22 meta = with stdenv.lib; { 25 23 homepage = "https://github.com/BIC-MNI/${pname}"; 26 24 description = "Collection of Perl and shell scripts for processing MINC files";
-2
pkgs/applications/science/biology/ants/default.nix
··· 24 24 25 25 cmakeFlags = [ "-DANTS_SUPERBUILD=FALSE" "-DUSE_VTK=TRUE" ]; 26 26 27 - enableParallelBuilding = true; 28 - 29 27 postInstall = '' 30 28 for file in $out/bin/*; do 31 29 wrapProgram $file --set ANTSPATH "$out/bin"
-1
pkgs/applications/science/biology/dcm2niix/default.nix
··· 16 16 sha256 = "1cncfwhyhmg18n970lkn6yvp0i74ajznsl8dqz00asqfzmg681n1"; 17 17 }; 18 18 19 - enableParallelBuilding = true; 20 19 nativeBuildInputs = [ cmake git ]; 21 20 buildInputs = [ libyamlcpp ]; 22 21
-2
pkgs/applications/science/biology/megahit/default.nix
··· 14 14 nativeBuildInputs = [ cmake ]; 15 15 buildInputs = [ zlib ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 meta = with stdenv.lib; { 20 18 description = "An ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph"; 21 19 license = licenses.gpl3;
+2 -5
pkgs/applications/science/biology/messer-slim/default.nix
··· 1 1 { stdenv, fetchurl, cmake, gcc, gcc-unwrapped }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "3.2.1"; 4 + version = "3.2.1"; 5 5 pname = "messer-slim"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/MesserLab/SLiM/archive/v${version}.tar.gz"; 9 9 sha256 = "1j3ssjvxpsc21mmzj59kwimglz8pdazi5w6wplmx11x744k77wa1"; 10 10 }; 11 - 12 - enableParallelBuilding = true; 13 11 14 12 nativeBuildInputs = [ cmake gcc gcc-unwrapped ]; 15 13 16 - cmakeFlags = [ "-DCMAKE_AR=${gcc-unwrapped}/bin/gcc-ar" 14 + cmakeFlags = [ "-DCMAKE_AR=${gcc-unwrapped}/bin/gcc-ar" 17 15 "-DCMAKE_RANLIB=${gcc-unwrapped}/bin/gcc-ranlib" ]; 18 16 19 17 meta = { ··· 24 22 platforms = stdenv.lib.platforms.all; 25 23 }; 26 24 } 27 -
-2
pkgs/applications/science/biology/minc-tools/default.nix
··· 26 26 done 27 27 ''; 28 28 29 - enableParallelBuilding = true; 30 - 31 29 meta = with stdenv.lib; { 32 30 homepage = "https://github.com/BIC-MNI/minc-tools"; 33 31 description = "Command-line utilities for working with MINC files";
-1
pkgs/applications/science/biology/niftyreg/default.nix
··· 13 13 14 14 nativeBuildInputs = [ cmake ]; 15 15 buildInputs = [ zlib ]; 16 - enableParallelBuilding = true; 17 16 18 17 meta = with stdenv.lib; { 19 18 homepage = "http://cmictig.cs.ucl.ac.uk/wiki/index.php/NiftyReg";
-1
pkgs/applications/science/biology/niftyseg/default.nix
··· 10 10 11 11 nativeBuildInputs = [ cmake ]; 12 12 buildInputs = [ eigen zlib ]; 13 - enableParallelBuilding = true; 14 13 15 14 meta = with stdenv.lib; { 16 15 homepage = "http://cmictig.cs.ucl.ac.uk/research/software/software-nifty/niftyseg";
-2
pkgs/applications/science/biology/obitools/obitools3.nix
··· 26 26 27 27 doCheck = true; 28 28 29 - enableParallelBuilding = true; 30 - 31 29 meta = with stdenv.lib ; { 32 30 description = "Management of analyses and data in DNA metabarcoding"; 33 31 homepage = "https://git.metabarcoding.org/obitools/obitools3";
-1
pkgs/applications/science/chemistry/d-seams/default.nix
··· 12 12 sha256 = "03zhhl9vhi3rhc3qz1g3zb89jksgpdlrk15fcr8xcz8pkj6r5b1i"; 13 13 }; 14 14 15 - enableParallelBuilding = true; 16 15 nativeBuildInputs = [ cmake lua luaPackages.luafilesystem ]; 17 16 buildInputs = [ fmt rang libyamlcpp eigen catch2 boost gsl liblapack blas ]; 18 17
-2
pkgs/applications/science/chemistry/openmolcas/default.nix
··· 38 38 openssh 39 39 ]; 40 40 41 - enableParallelBuilding = true; 42 - 43 41 cmakeFlags = [ 44 42 "-DOPENMP=ON" 45 43 "-DGA=ON"
-2
pkgs/applications/science/electronics/appcsxcad/default.nix
··· 45 45 rm $out/bin/AppCSXCAD.sh 46 46 ''; 47 47 48 - enableParallelBuilding = true; 49 - 50 48 meta = with lib; { 51 49 description = "Minimal Application using the QCSXCAD library"; 52 50 homepage = "https://github.com/thliebig/AppCSXCAD";
-2
pkgs/applications/science/electronics/caneda/default.nix
··· 14 14 nativeBuildInputs = [ cmake ]; 15 15 buildInputs = [ qtbase qttools qtsvg qwt ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 meta = { 20 18 description = "Open source EDA software focused on easy of use and portability"; 21 19 homepage = "http://caneda.org";
-2
pkgs/applications/science/electronics/csxcad/default.nix
··· 37 37 38 38 nativeBuildInputs = [ cmake ]; 39 39 40 - enableParallelBuilding = true; 41 - 42 40 meta = with stdenv.lib; { 43 41 description = "A C++ library to describe geometrical objects"; 44 42 homepage = "https://github.com/thliebig/CSXCAD";
-2
pkgs/applications/science/electronics/dsview/default.nix
··· 34 34 python3 35 35 ]; 36 36 37 - enableParallelBuilding = true; 38 - 39 37 meta = with lib; { 40 38 description = "A GUI program for supporting various instruments from DreamSourceLab, including logic analyzer, oscilloscope, etc"; 41 39 homepage = "https://www.dreamsourcelab.com/";
-2
pkgs/applications/science/electronics/openems/default.nix
··· 63 63 -o $out/share/openEMS/matlab/h5readatt_octave.oct 64 64 ''; 65 65 66 - enableParallelBuilding = true; 67 - 68 66 meta = with lib; { 69 67 description = "Open Source Electromagnetic Field Solver"; 70 68 homepage = "http://openems.de/index.php/Main_Page.html";
-1
pkgs/applications/science/logic/abc/default.nix
··· 16 16 nativeBuildInputs = [ cmake ]; 17 17 buildInputs = [ readline ]; 18 18 19 - enableParallelBuilding = true; 20 19 installPhase = "mkdir -p $out/bin && mv abc $out/bin"; 21 20 22 21 # needed by yosys
-3
pkgs/applications/science/logic/cvc4/default.nix
··· 35 35 "-DCMAKE_BUILD_TYPE=Production" 36 36 ]; 37 37 38 - 39 - enableParallelBuilding = true; 40 - 41 38 meta = with stdenv.lib; { 42 39 description = "A high-performance theorem prover and SMT solver"; 43 40 homepage = "http://cvc4.cs.stanford.edu/web/";
-2
pkgs/applications/science/logic/fast-downward/default.nix
··· 16 16 cmakeFlags = 17 17 lib.optional osi.withCplex [ "-DDOWNWARD_CPLEX_ROOT=${cplex}/cplex" ]; 18 18 19 - enableParallelBuilding = true; 20 - 21 19 configurePhase = '' 22 20 python build.py release 23 21 '';
-1
pkgs/applications/science/logic/lean/default.nix
··· 13 13 14 14 nativeBuildInputs = [ cmake ]; 15 15 buildInputs = [ gmp ]; 16 - enableParallelBuilding = true; 17 16 18 17 cmakeDir = "../src"; 19 18
-3
pkgs/applications/science/logic/stp/default.nix
··· 24 24 ) 25 25 ''; 26 26 27 - # seems to build fine now, may revert if concurrency does become an issue 28 - enableParallelBuilding = true; 29 - 30 27 meta = with stdenv.lib; { 31 28 description = "Simple Theorem Prover"; 32 29 maintainers = with maintainers; [ ];
-2
pkgs/applications/science/machine-learning/shogun/default.nix
··· 88 88 (flag "OpenCV" opencvSupport) 89 89 ]; 90 90 91 - enableParallelBuilding = true; 92 - 93 91 meta = with stdenv.lib; { 94 92 description = "A toolbox which offers a wide range of efficient and unified machine learning methods"; 95 93 homepage = "http://shogun-toolbox.org/";
-2
pkgs/applications/science/math/caffe/default.nix
··· 46 46 sha256 = "104jp3cm823i3cdph7hgsnj6l77ygbwsy35mdmzhmsi4jxprd9j3"; 47 47 }; 48 48 49 - enableParallelBuilding = true; 50 - 51 49 nativeBuildInputs = [ cmake doxygen ]; 52 50 53 51 cmakeFlags =
-2
pkgs/applications/science/math/cntk/default.nix
··· 90 90 done 91 91 ''; 92 92 93 - enableParallelBuilding = true; 94 - 95 93 meta = with lib; { 96 94 # Newer cub is included with cudatoolkit now and it breaks the build. 97 95 # https://github.com/Microsoft/CNTK/issues/3191
-2
pkgs/applications/science/math/mxnet/default.nix
··· 43 43 rm "$out"/lib/*.a 44 44 ''; 45 45 46 - enableParallelBuilding = true; 47 - 48 46 meta = with stdenv.lib; { 49 47 description = "Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler"; 50 48 homepage = "https://mxnet.incubator.apache.org/";
-2
pkgs/applications/science/misc/openmodelica/default.nix
··· 22 22 23 23 hardeningDisable = [ "format" ]; 24 24 25 - enableParallelBuilding = true; 26 - 27 25 patchPhase = '' 28 26 cp -fv ${fakegit}/bin/checkout-git.sh libraries/checkout-git.sh 29 27 cp -fv ${fakegit}/bin/checkout-svn.sh libraries/checkout-svn.sh
-2
pkgs/applications/science/misc/openmvs/default.nix
··· 50 50 51 51 dontUseCmakeBuildDir = true; 52 52 53 - enableParallelBuilding = true; 54 - 55 53 meta = with stdenv.lib; { 56 54 description = "A library for computer-vision scientists and especially targeted to the Multi-View Stereo reconstruction community"; 57 55 homepage = "http://cdcseacave.github.io/openMVS/";
-2
pkgs/applications/science/misc/root/5.nix
··· 77 77 ] 78 78 ++ stdenv.lib.optional stdenv.isDarwin "-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks"; 79 79 80 - enableParallelBuilding = true; 81 - 82 80 setupHook = ./setup-hook.sh; 83 81 84 82 meta = with stdenv.lib; {
-2
pkgs/applications/science/misc/root/default.nix
··· 80 80 "-Druntime_cxxmodules=OFF" 81 81 ]; 82 82 83 - enableParallelBuilding = true; 84 - 85 83 postInstall = '' 86 84 for prog in rootbrowse rootcp rooteventselector rootls rootmkdir rootmv rootprint rootrm rootslimtree; do 87 85 wrapProgram "$out/bin/$prog" \
-2
pkgs/applications/science/misc/simgrid/default.nix
··· 92 92 EOW 93 93 ''; 94 94 95 - enableParallelBuilding = true; 96 - 97 95 meta = { 98 96 description = "Framework for the simulation of distributed applications"; 99 97 longDescription = ''
-2
pkgs/applications/science/physics/elmerfem/default.nix
··· 36 36 ./fix-cmake.patch 37 37 ]; 38 38 39 - enableParallelBuilding = true; 40 - 41 39 meta = with stdenv.lib; { 42 40 homepage = "https://elmerfem.org/"; 43 41 description = "A finite element software for multiphysical problems";
-3
pkgs/applications/video/kodi/default.nix
··· 83 83 repo = name; 84 84 inherit rev sha256; 85 85 }; 86 - enableParallelBuilding = true; 87 86 } // attrs'); 88 87 89 88 ffmpeg = kodiDependency rec { ··· 241 240 "-DCORE_PLATFORM_NAME=gbm" 242 241 "-DGBM_RENDER_SYSTEM=gles" 243 242 ]; 244 - 245 - enableParallelBuilding = true; 246 243 247 244 # 14 tests fail but the biggest issue is that every test takes 30 seconds - 248 245 # I'm guessing there is a thing waiting to time out
-1
pkgs/data/themes/kde2/default.nix
··· 15 15 }; 16 16 17 17 outputs = [ "out" "dev" ]; 18 - enableParallelBuilding = true; 19 18 20 19 nativeBuildInputs = [ cmake extra-cmake-modules ]; 21 20
-2
pkgs/data/themes/qtcurve/default.nix
··· 17 17 sha256 = "XP9VTeiVIiMm5mkXapCKWxfcvaYCkhY3S5RXZNR3oWo="; 18 18 }; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 patches = [ 23 21 # Remove unnecessary constexpr, this is not allowed in C++14 24 22 (fetchpatch {
-2
pkgs/desktops/xfce/thunar-plugins/dropbox/default.nix
··· 30 30 gtk3 31 31 ]; 32 32 33 - enableParallelBuilding = true; 34 - 35 33 passthru.updateScript = xfce.updateScript { 36 34 inherit pname version; 37 35 attrPath = "xfce.thunar-dropbox-plugin";
-1
pkgs/development/compilers/glslang/default.nix
··· 54 54 }; 55 55 56 56 nativeBuildInputs = [ cmake python3 bison jq ]; 57 - enableParallelBuilding = true; 58 57 59 58 postPatch = '' 60 59 cp --no-preserve=mode -r "${localSpirv-tools.src}" External/spirv-tools
-2
pkgs/development/compilers/julia/1.0.nix
··· 171 171 openspecfun pcre2 172 172 ]); 173 173 174 - enableParallelBuilding = true; 175 - 176 174 doCheck = !stdenv.isDarwin; 177 175 checkTarget = "testall"; 178 176 # Julia's tests require read/write access to $HOME
-2
pkgs/development/compilers/julia/1.3.nix
··· 119 119 openspecfun pcre2 lapack 120 120 ]; 121 121 122 - enableParallelBuilding = true; 123 - 124 122 # Other versions of Julia pass the tests, but we are not sure why these fail. 125 123 doCheck = false; 126 124 checkTarget = "testall";
-2
pkgs/development/compilers/julia/1.5.nix
··· 119 119 openspecfun pcre2 lapack 120 120 ]; 121 121 122 - enableParallelBuilding = true; 123 - 124 122 # Julia's tests require read/write access to $HOME 125 123 preCheck = '' 126 124 export HOME="$NIX_BUILD_TOP"
-2
pkgs/development/compilers/ldc/generic.nix
··· 18 18 pname = "ldc"; 19 19 inherit version; 20 20 21 - enableParallelBuilding = true; 22 - 23 21 src = fetchurl { 24 22 url = "https://github.com/ldc-developers/ldc/releases/download/v${version}/ldc-${version}-src.tar.gz"; 25 23 sha256 = ldcSha256;
-2
pkgs/development/compilers/llvm/10/clang/default.nix
··· 82 82 rm $out/bin/c-index-test 83 83 ''; 84 84 85 - enableParallelBuilding = true; 86 - 87 85 passthru = { 88 86 isClang = true; 89 87 inherit llvm;
-1
pkgs/development/compilers/llvm/10/compiler-rt.nix
··· 87 87 ln -s $out/lib/*/clang_rt.crtend_shared-*.o $out/lib/crtendS.o 88 88 ''; 89 89 90 - enableParallelBuilding = true; 91 90 }
-2
pkgs/development/compilers/llvm/10/libc++/default.nix
··· 38 38 "-DLIBCXX_ENABLE_EXCEPTIONS=OFF" 39 39 ] ++ stdenv.lib.optional (!enableShared) "-DLIBCXX_ENABLE_SHARED=OFF"; 40 40 41 - enableParallelBuilding = true; 42 - 43 41 passthru = { 44 42 isLLVM = true; 45 43 };
-2
pkgs/development/compilers/llvm/10/libunwind.nix
··· 8 8 9 9 nativeBuildInputs = [ cmake ]; 10 10 11 - enableParallelBuilding = true; 12 - 13 11 cmakeFlags = stdenv.lib.optional (!enableShared) "-DLIBUNWIND_ENABLE_SHARED=OFF"; 14 12 }
-2
pkgs/development/compilers/llvm/10/lld.nix
··· 17 17 18 18 outputs = [ "out" "dev" ]; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 postInstall = '' 23 21 moveToOutput include "$dev" 24 22 moveToOutput lib "$dev"
-2
pkgs/development/compilers/llvm/10/lldb.nix
··· 59 59 "-DSPHINX_OUTPUT_HTML=OFF" 60 60 ]; 61 61 62 - enableParallelBuilding = true; 63 - 64 62 postInstall = '' 65 63 # Editor support 66 64 # vscode:
-2
pkgs/development/compilers/llvm/10/llvm.nix
··· 154 154 155 155 checkTarget = "check-all"; 156 156 157 - enableParallelBuilding = true; 158 - 159 157 requiredSystemFeatures = [ "big-parallel" ]; 160 158 meta = { 161 159 description = "Collection of modular and reusable compiler and toolchain technologies";
-2
pkgs/development/compilers/llvm/10/openmp.nix
··· 15 15 nativeBuildInputs = [ cmake perl ]; 16 16 buildInputs = [ llvm ]; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 meta = { 21 19 description = "Components required to build an executable OpenMP program"; 22 20 homepage = "https://openmp.llvm.org/";
-2
pkgs/development/compilers/llvm/11/clang/default.nix
··· 81 81 rm $out/bin/c-index-test 82 82 ''; 83 83 84 - enableParallelBuilding = true; 85 - 86 84 passthru = { 87 85 isClang = true; 88 86 inherit llvm;
-1
pkgs/development/compilers/llvm/11/compiler-rt.nix
··· 86 86 ln -s $out/lib/*/clang_rt.crtend_shared-*.o $out/lib/crtendS.o 87 87 ''; 88 88 89 - enableParallelBuilding = true; 90 89 }
-2
pkgs/development/compilers/llvm/11/libc++/default.nix
··· 35 35 "-DLIBCXX_ENABLE_EXCEPTIONS=OFF" 36 36 ] ++ stdenv.lib.optional (!enableShared) "-DLIBCXX_ENABLE_SHARED=OFF"; 37 37 38 - enableParallelBuilding = true; 39 - 40 38 passthru = { 41 39 isLLVM = true; 42 40 };
-2
pkgs/development/compilers/llvm/11/libunwind.nix
··· 8 8 9 9 nativeBuildInputs = [ cmake ]; 10 10 11 - enableParallelBuilding = true; 12 - 13 11 cmakeFlags = stdenv.lib.optional (!enableShared) "-DLIBUNWIND_ENABLE_SHARED=OFF"; 14 12 }
-2
pkgs/development/compilers/llvm/11/lld.nix
··· 17 17 18 18 outputs = [ "out" "dev" ]; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 postInstall = '' 23 21 moveToOutput include "$dev" 24 22 moveToOutput lib "$dev"
-2
pkgs/development/compilers/llvm/11/lldb.nix
··· 59 59 "-DSPHINX_OUTPUT_HTML=OFF" 60 60 ]; 61 61 62 - enableParallelBuilding = true; 63 - 64 62 postInstall = '' 65 63 # Editor support 66 64 # vscode:
-2
pkgs/development/compilers/llvm/11/llvm.nix
··· 156 156 157 157 checkTarget = "check-all"; 158 158 159 - enableParallelBuilding = true; 160 - 161 159 requiredSystemFeatures = [ "big-parallel" ]; 162 160 meta = { 163 161 description = "Collection of modular and reusable compiler and toolchain technologies";
-2
pkgs/development/compilers/llvm/11/openmp.nix
··· 15 15 nativeBuildInputs = [ cmake perl ]; 16 16 buildInputs = [ llvm ]; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 meta = { 21 19 description = "Components required to build an executable OpenMP program"; 22 20 homepage = "https://openmp.llvm.org/";
-2
pkgs/development/compilers/llvm/5/clang/default.nix
··· 72 72 rm $out/bin/c-index-test 73 73 ''; 74 74 75 - enableParallelBuilding = true; 76 - 77 75 passthru = { 78 76 isClang = true; 79 77 inherit llvm;
-1
pkgs/development/compilers/llvm/5/compiler-rt.nix
··· 84 84 ln -s $out/lib/*/clang_rt.crtend_shared-*.o $out/lib/linux/crtendS.o 85 85 ''; 86 86 87 - enableParallelBuilding = true; 88 87 }
-2
pkgs/development/compilers/llvm/5/libc++/default.nix
··· 37 37 "-DLIBCXX_CXX_ABI=libcxxabi" 38 38 ] ++ stdenv.lib.optional stdenv.hostPlatform.isMusl "-DLIBCXX_HAS_MUSL_LIBC=1"; 39 39 40 - enableParallelBuilding = true; 41 - 42 40 passthru = { 43 41 isLLVM = true; 44 42 };
-2
pkgs/development/compilers/llvm/5/lld.nix
··· 16 16 17 17 outputs = [ "out" "dev" ]; 18 18 19 - enableParallelBuilding = true; 20 - 21 19 postInstall = '' 22 20 moveToOutput include "$dev" 23 21 moveToOutput lib "$dev"
-2
pkgs/development/compilers/llvm/5/lldb.nix
··· 51 51 "-DLLDB_CODESIGN_IDENTITY=" # codesigning makes nondeterministic 52 52 ]; 53 53 54 - enableParallelBuilding = true; 55 - 56 54 postInstall = '' 57 55 mkdir -p $out/share/man/man1 58 56 cp ../docs/lldb.1 $out/share/man/man1/
-2
pkgs/development/compilers/llvm/5/llvm.nix
··· 146 146 147 147 checkTarget = "check-all"; 148 148 149 - enableParallelBuilding = true; 150 - 151 149 requiredSystemFeatures = [ "big-parallel" ]; 152 150 meta = { 153 151 description = "Collection of modular and reusable compiler and toolchain technologies";
-2
pkgs/development/compilers/llvm/5/openmp.nix
··· 15 15 nativeBuildInputs = [ cmake perl ]; 16 16 buildInputs = [ llvm ]; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 meta = { 21 19 description = "Components required to build an executable OpenMP program"; 22 20 homepage = "https://openmp.llvm.org/";
-2
pkgs/development/compilers/llvm/6/clang/default.nix
··· 72 72 rm $out/bin/c-index-test 73 73 ''; 74 74 75 - enableParallelBuilding = true; 76 - 77 75 passthru = { 78 76 isClang = true; 79 77 inherit llvm;
-1
pkgs/development/compilers/llvm/6/compiler-rt.nix
··· 86 86 ln -s $out/lib/*/clang_rt.crtend_shared-*.o $out/lib/linux/crtendS.o 87 87 ''; 88 88 89 - enableParallelBuilding = true; 90 89 }
-2
pkgs/development/compilers/llvm/6/libc++/default.nix
··· 37 37 "-DLIBCXX_CXX_ABI=libcxxabi" 38 38 ] ++ stdenv.lib.optional stdenv.hostPlatform.isMusl "-DLIBCXX_HAS_MUSL_LIBC=1"; 39 39 40 - enableParallelBuilding = true; 41 - 42 40 passthru = { 43 41 isLLVM = true; 44 42 };
-2
pkgs/development/compilers/llvm/6/lld.nix
··· 17 17 18 18 outputs = [ "out" "dev" ]; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 postInstall = '' 23 21 moveToOutput include "$dev" 24 22 moveToOutput lib "$dev"
-2
pkgs/development/compilers/llvm/6/lldb.nix
··· 51 51 "-DLLDB_CODESIGN_IDENTITY=" # codesigning makes nondeterministic 52 52 ]; 53 53 54 - enableParallelBuilding = true; 55 - 56 54 postInstall = '' 57 55 mkdir -p $out/share/man/man1 58 56 cp ../docs/lldb.1 $out/share/man/man1/
-2
pkgs/development/compilers/llvm/6/llvm.nix
··· 145 145 146 146 checkTarget = "check-all"; 147 147 148 - enableParallelBuilding = true; 149 - 150 148 requiredSystemFeatures = [ "big-parallel" ]; 151 149 meta = { 152 150 description = "Collection of modular and reusable compiler and toolchain technologies";
-2
pkgs/development/compilers/llvm/6/openmp.nix
··· 15 15 nativeBuildInputs = [ cmake perl ]; 16 16 buildInputs = [ llvm ]; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 meta = { 21 19 description = "Components required to build an executable OpenMP program"; 22 20 homepage = "https://openmp.llvm.org/";
-2
pkgs/development/compilers/llvm/7/clang/default.nix
··· 83 83 rm $out/bin/c-index-test 84 84 ''; 85 85 86 - enableParallelBuilding = true; 87 - 88 86 passthru = { 89 87 isClang = true; 90 88 inherit llvm;
-1
pkgs/development/compilers/llvm/7/compiler-rt.nix
··· 89 89 ln -s $out/lib/*/clang_rt.crtend_shared-*.o $out/lib/linux/crtendS.o 90 90 ''; 91 91 92 - enableParallelBuilding = true; 93 92 }
-2
pkgs/development/compilers/llvm/7/libc++/default.nix
··· 38 38 ] ++ stdenv.lib.optional stdenv.hostPlatform.isMusl "-DLIBCXX_HAS_MUSL_LIBC=1" 39 39 ++ stdenv.lib.optional (!enableShared) "-DLIBCXX_ENABLE_SHARED=OFF" ; 40 40 41 - enableParallelBuilding = true; 42 - 43 41 passthru = { 44 42 isLLVM = true; 45 43 };
-2
pkgs/development/compilers/llvm/7/lld.nix
··· 17 17 18 18 outputs = [ "out" "dev" ]; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 postInstall = '' 23 21 moveToOutput include "$dev" 24 22 moveToOutput lib "$dev"
-2
pkgs/development/compilers/llvm/7/lldb.nix
··· 52 52 53 53 NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isClang "-I${libxml2.dev}/include/libxml2"; 54 54 55 - enableParallelBuilding = true; 56 - 57 55 postInstall = '' 58 56 mkdir -p $out/share/man/man1 59 57 cp ../docs/lldb.1 $out/share/man/man1/
-2
pkgs/development/compilers/llvm/7/llvm.nix
··· 167 167 168 168 checkTarget = "check-all"; 169 169 170 - enableParallelBuilding = true; 171 - 172 170 requiredSystemFeatures = [ "big-parallel" ]; 173 171 meta = { 174 172 description = "Collection of modular and reusable compiler and toolchain technologies";
-2
pkgs/development/compilers/llvm/7/openmp.nix
··· 15 15 nativeBuildInputs = [ cmake perl ]; 16 16 buildInputs = [ llvm ]; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 meta = { 21 19 description = "Components required to build an executable OpenMP program"; 22 20 homepage = "https://openmp.llvm.org/";
-2
pkgs/development/compilers/llvm/8/clang/default.nix
··· 93 93 rm $out/bin/c-index-test 94 94 ''; 95 95 96 - enableParallelBuilding = true; 97 - 98 96 passthru = { 99 97 isClang = true; 100 98 inherit llvm;
-1
pkgs/development/compilers/llvm/8/compiler-rt.nix
··· 87 87 ln -s $out/lib/*/clang_rt.crtend_shared-*.o $out/lib/crtendS.o 88 88 ''; 89 89 90 - enableParallelBuilding = true; 91 90 }
-2
pkgs/development/compilers/llvm/8/libc++/default.nix
··· 42 42 "-DLIBCXX_ENABLE_EXCEPTIONS=OFF" 43 43 ] ++ stdenv.lib.optional (!enableShared) "-DLIBCXX_ENABLE_SHARED=OFF"; 44 44 45 - enableParallelBuilding = true; 46 - 47 45 passthru = { 48 46 isLLVM = true; 49 47 };
-2
pkgs/development/compilers/llvm/8/libunwind.nix
··· 19 19 }) 20 20 ]; 21 21 22 - enableParallelBuilding = true; 23 - 24 22 cmakeFlags = stdenv.lib.optional (!enableShared) "-DLIBUNWIND_ENABLE_SHARED=OFF"; 25 23 }
-2
pkgs/development/compilers/llvm/8/lld.nix
··· 17 17 18 18 outputs = [ "out" "dev" ]; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 postInstall = '' 23 21 moveToOutput include "$dev" 24 22 moveToOutput lib "$dev"
-2
pkgs/development/compilers/llvm/8/lldb.nix
··· 41 41 "-DLLDB_CODESIGN_IDENTITY=" # codesigning makes nondeterministic 42 42 ]; 43 43 44 - enableParallelBuilding = true; 45 - 46 44 postInstall = '' 47 45 mkdir -p $out/share/man/man1 48 46 cp ../docs/lldb.1 $out/share/man/man1/
-2
pkgs/development/compilers/llvm/8/llvm.nix
··· 151 151 152 152 checkTarget = "check-all"; 153 153 154 - enableParallelBuilding = true; 155 - 156 154 requiredSystemFeatures = [ "big-parallel" ]; 157 155 meta = { 158 156 description = "Collection of modular and reusable compiler and toolchain technologies";
-2
pkgs/development/compilers/llvm/8/openmp.nix
··· 15 15 nativeBuildInputs = [ cmake perl ]; 16 16 buildInputs = [ llvm ]; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 meta = { 21 19 description = "Components required to build an executable OpenMP program"; 22 20 homepage = "https://openmp.llvm.org/";
-2
pkgs/development/compilers/llvm/9/clang/default.nix
··· 88 88 rm $out/bin/c-index-test 89 89 ''; 90 90 91 - enableParallelBuilding = true; 92 - 93 91 passthru = { 94 92 isClang = true; 95 93 inherit llvm;
-2
pkgs/development/compilers/llvm/9/compiler-rt.nix
··· 85 85 ln -s $out/lib/*/clang_rt.crtbegin_shared-*.o $out/lib/crtbeginS.o 86 86 ln -s $out/lib/*/clang_rt.crtend_shared-*.o $out/lib/crtendS.o 87 87 ''; 88 - 89 - enableParallelBuilding = true; 90 88 }
-2
pkgs/development/compilers/llvm/9/libc++/default.nix
··· 38 38 "-DLIBCXX_ENABLE_EXCEPTIONS=OFF" 39 39 ] ++ stdenv.lib.optional (!enableShared) "-DLIBCXX_ENABLE_SHARED=OFF"; 40 40 41 - enableParallelBuilding = true; 42 - 43 41 passthru = { 44 42 isLLVM = true; 45 43 };
-2
pkgs/development/compilers/llvm/9/libunwind.nix
··· 8 8 9 9 nativeBuildInputs = [ cmake ]; 10 10 11 - enableParallelBuilding = true; 12 - 13 11 cmakeFlags = stdenv.lib.optional (!enableShared) "-DLIBUNWIND_ENABLE_SHARED=OFF"; 14 12 }
-2
pkgs/development/compilers/llvm/9/lld.nix
··· 17 17 18 18 outputs = [ "out" "dev" ]; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 postInstall = '' 23 21 moveToOutput include "$dev" 24 22 moveToOutput lib "$dev"
-2
pkgs/development/compilers/llvm/9/lldb.nix
··· 49 49 "-DLLVM_EXTERNAL_LIT=${lit}/bin/lit" 50 50 ]; 51 51 52 - enableParallelBuilding = true; 53 - 54 52 postInstall = '' 55 53 # man page 56 54 mkdir -p $out/share/man/man1
-2
pkgs/development/compilers/llvm/9/llvm.nix
··· 159 159 160 160 checkTarget = "check-all"; 161 161 162 - enableParallelBuilding = true; 163 - 164 162 requiredSystemFeatures = [ "big-parallel" ]; 165 163 meta = { 166 164 description = "Collection of modular and reusable compiler and toolchain technologies";
-2
pkgs/development/compilers/llvm/9/openmp.nix
··· 15 15 nativeBuildInputs = [ cmake perl ]; 16 16 buildInputs = [ llvm ]; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 meta = { 21 19 description = "Components required to build an executable OpenMP program"; 22 20 homepage = "https://openmp.llvm.org/";
-1
pkgs/development/compilers/lobster/default.nix
··· 45 45 ]; 46 46 47 47 preConfigure = "cd dev"; 48 - enableParallelBuilding = true; 49 48 50 49 passthru = { 51 50 tests.can-run-hello-world = callPackage ./test-can-run-hello-world.nix {};
-2
pkgs/development/compilers/mono/llvm.nix
··· 41 41 "-DLLVM_BINUTILS_INCDIR=${libbfd.dev}/include" 42 42 ] ++ stdenv.lib.optional (!isDarwin) "-DBUILD_SHARED_LIBS=ON"; 43 43 44 - enableParallelBuilding = true; 45 - 46 44 meta = { 47 45 description = "Collection of modular and reusable compiler and toolchain technologies - Mono build"; 48 46 homepage = "http://llvm.org/";
-1
pkgs/development/compilers/nextpnr/default.nix
··· 43 43 ++ (lib.optional enableGui qtbase) 44 44 ++ (lib.optional stdenv.cc.isClang llvmPackages.openmp); 45 45 46 - enableParallelBuilding = true; 47 46 cmakeFlags = 48 47 [ "-DCURRENT_GIT_VERSION=${lib.substring 0 7 (lib.elemAt srcs 0).rev}" 49 48 "-DARCH=generic;ice40;ecp5"
-2
pkgs/development/compilers/ponyc/default.nix
··· 83 83 ++ stdenv.lib.optionals stdenv.isDarwin [ "bits=64" ] 84 84 ++ stdenv.lib.optionals (stdenv.isDarwin && (!lto)) [ "lto=no" ]; 85 85 86 - enableParallelBuilding = true; 87 - 88 86 doCheck = true; 89 87 90 88 NIX_CFLAGS_COMPILE = [ "-Wno-error=redundant-move" "-Wno-error=implicit-fallthrough" ];
-2
pkgs/development/compilers/squeak/default.nix
··· 25 25 unix/cmake/configure --prefix=$out --enable-mpg-{mmx,pthreads} 26 26 ''; 27 27 28 - enableParallelBuilding = true; 29 - 30 28 hardeningDisable = [ "format" ]; 31 29 32 30 meta = with stdenv.lib; {
+2 -4
pkgs/development/interpreters/supercollider/default.nix
··· 1 - { stdenv, mkDerivation, fetchurl, cmake, pkgconfig, alsaLib 1 + { stdenv, fetchurl, cmake, pkgconfig, alsaLib 2 2 , libjack2, libsndfile, fftw, curl, gcc 3 3 , libXt, qtbase, qttools, qtwebengine 4 4 , readline, qtwebsockets, useSCEL ? false, emacs ··· 7 7 let optional = stdenv.lib.optional; 8 8 in 9 9 10 - mkDerivation rec { 10 + stdenv.mkDerivation rec { 11 11 pname = "supercollider"; 12 12 version = "3.11.2"; 13 13 ··· 25 25 ]; 26 26 27 27 nativeBuildInputs = [ cmake pkgconfig qttools ]; 28 - 29 - enableParallelBuilding = true; 30 28 31 29 buildInputs = [ 32 30 gcc libjack2 libsndfile fftw curl libXt qtbase qtwebengine qtwebsockets readline ]
-2
pkgs/development/libraries/alembic/default.nix
··· 17 17 nativeBuildInputs = [ unzip cmake ]; 18 18 buildInputs = [ openexr hdf5-threadsafe ]; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 buildPhase = '' 23 21 cmake -DUSE_HDF5=ON -DCMAKE_INSTALL_PREFIX=$out/ -DUSE_TESTS=OFF . 24 22
-2
pkgs/development/libraries/arrayfire/default.nix
··· 36 36 export CUDA_PATH="${cudatoolkit}" 37 37 ''; 38 38 39 - enableParallelBuilding = true; 40 - 41 39 nativeBuildInputs = [ 42 40 cmake 43 41 pkgconfig
-2
pkgs/development/libraries/audio/mbelib/default.nix
··· 13 13 14 14 nativeBuildInputs = [ cmake ]; 15 15 16 - enableParallelBuilding = true; 17 - 18 16 doCheck = true; 19 17 preCheck = '' 20 18 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}$PWD
-2
pkgs/development/libraries/avro-c++/default.nix
··· 19 19 substituteInPlace test/buffertest.cc --replace "BOOST_MESSAGE" "BOOST_TEST_MESSAGE" 20 20 ''; 21 21 22 - enableParallelBuilding = true; 23 - 24 22 meta = { 25 23 description = "A C++ library which implements parts of the Avro Specification"; 26 24 homepage = "https://avro.apache.org/";
-2
pkgs/development/libraries/avro-c/default.nix
··· 19 19 20 20 buildInputs = [ jansson zlib ]; 21 21 22 - enableParallelBuilding = true; 23 - 24 22 meta = with stdenv.lib; { 25 23 description = "A C library which implements parts of the Avro Specification"; 26 24 homepage = "https://avro.apache.org/";
-4
pkgs/development/libraries/beignet/default.nix
··· 30 30 31 31 patches = [ ./clang_llvm.patch ]; 32 32 33 - enableParallelBuilding = true; 34 - 35 33 postPatch = '' 36 34 substituteInPlace CMakeLists.txt --replace /etc/OpenCL/vendors "\''${CMAKE_INSTALL_PREFIX}/etc/OpenCL/vendors" 37 35 patchShebangs src/git_sha1.sh ··· 65 63 preConfigure = '' 66 64 cd utests 67 65 ''; 68 - 69 - enableParallelBuilding = true; 70 66 71 67 nativeBuildInputs = [ 72 68 cmake
-1
pkgs/development/libraries/boringssl/default.nix
··· 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake perl go ]; 15 - enableParallelBuilding = true; 16 15 17 16 makeFlags = [ "GOCACHE=$(TMPDIR)/go-cache" ]; 18 17
-2
pkgs/development/libraries/bullet/default.nix
··· 38 38 "-DBUILD_UNIT_TESTS=OFF" 39 39 ]; 40 40 41 - enableParallelBuilding = true; 42 - 43 41 NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isClang 44 42 "-Wno-error=argument-outside-range -Wno-error=c++11-narrowing"; 45 43
-2
pkgs/development/libraries/bullet/roboschool-fork.nix
··· 42 42 "-DBUILD_UNIT_TESTS=OFF" 43 43 ]; 44 44 45 - enableParallelBuilding = true; 46 - 47 45 meta = with stdenv.lib; { 48 46 description = "A professional free 3D Game Multiphysics Library"; 49 47 longDescription = ''
-2
pkgs/development/libraries/c-blosc/default.nix
··· 13 13 14 14 nativeBuildInputs = [ cmake ]; 15 15 16 - enableParallelBuilding = true; 17 - 18 16 meta = with stdenv.lib; { 19 17 description = "A blocking, shuffling and loss-less compression library"; 20 18 homepage = "https://www.blosc.org";
-2
pkgs/development/libraries/cpp-hocon/default.nix
··· 17 17 18 18 buildInputs = [ boost curl leatherman ]; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 meta = with stdenv.lib; { 23 21 inherit (src.meta) homepage; 24 22 description = "A C++ port of the Typesafe Config library";
-2
pkgs/development/libraries/criterion/default.nix
··· 13 13 fetchSubmodules = true; 14 14 }; 15 15 16 - enableParallelBuilding = true; 17 - 18 16 nativeBuildInputs = [ cmake pkg-config ]; 19 17 20 18 buildInputs = [
-1
pkgs/development/libraries/curlpp/default.nix
··· 12 12 13 13 buildInputs = [ curl ]; 14 14 nativeBuildInputs = [ cmake ]; 15 - enableParallelBuilding = true; 16 15 17 16 meta = with stdenv.lib; { 18 17 homepage = "https://www.curlpp.org/";
-1
pkgs/development/libraries/dlib/default.nix
··· 25 25 "-DUSE_DLIB_USE_CUDA=${if cudaSupport then "1" else "0"}" 26 26 "-DUSE_AVX_INSTRUCTIONS=${if avxSupport then "yes" else "no"}" ]; 27 27 28 - enableParallelBuilding = true; 29 28 nativeBuildInputs = [ cmake pkgconfig ]; 30 29 buildInputs = [ libpng libjpeg ] ++ lib.optional guiSupport libX11; 31 30
-2
pkgs/development/libraries/doctest/default.nix
··· 13 13 14 14 nativeBuildInputs = [ cmake ]; 15 15 16 - enableParallelBuilding = true; 17 - 18 16 meta = with stdenv.lib; { 19 17 homepage = "https://github.com/onqtam/doctest"; 20 18 description = "The fastest feature-rich C++11/14/17/20 single-header testing framework";
-2
pkgs/development/libraries/double-conversion/default.nix
··· 20 20 rm BUILD 21 21 ''; 22 22 23 - enableParallelBuilding = true; 24 - 25 23 meta = with stdenv.lib; { 26 24 description = "Binary-decimal and decimal-binary routines for IEEE doubles"; 27 25 homepage = "https://github.com/google/double-conversion";
-2
pkgs/development/libraries/draco/default.nix
··· 12 12 sha256 = "14ln4la52x38pf8syr7i5v4vd65ya4zij8zj5kgihah03cih0qcd"; 13 13 }; 14 14 15 - enableParallelBuilding = true; 16 - 17 15 nativeBuildInputs = [ cmake ]; 18 16 19 17 cmakeFlags = [
-2
pkgs/development/libraries/drumstick/default.nix
··· 23 23 24 24 outputs = [ "out" "dev" "man" ]; 25 25 26 - enableParallelBuilding = true; 27 - 28 26 nativeBuildInputs = [ 29 27 cmake docbook_xml_dtd_45 docbook_xml_dtd_45 docbook_xsl doxygen pkg-config wrapQtAppsHook 30 28 ];
-2
pkgs/development/libraries/eccodes/default.nix
··· 35 35 "-DENABLE_ECCODES_OMP_THREADS=${if enableOpenMPThreads then "ON" else "OFF"}" 36 36 ]; 37 37 38 - enableParallelBuilding = true; 39 - 40 38 doCheck = true; 41 39 42 40 # Only do tests that don't require downloading 120MB of testdata
-2
pkgs/development/libraries/fcppt/default.nix
··· 15 15 16 16 cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=false" "-DENABLE_BOOST=true" "-DENABLE_EXAMPLES=true" "-DENABLE_CATCH=true" "-DENABLE_TEST=true" ]; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 meta = with stdenv.lib; { 21 19 description = "Freundlich's C++ toolkit"; 22 20 longDescription = ''
-1
pkgs/development/libraries/flatbuffers/default.nix
··· 16 16 ''; 17 17 18 18 nativeBuildInputs = [ cmake ]; 19 - enableParallelBuilding = true; 20 19 21 20 cmakeFlags = [ "-DFLATBUFFERS_BUILD_TESTS=${if doCheck then "ON" else "OFF"}" ]; 22 21
-2
pkgs/development/libraries/freeglut/default.nix
··· 23 23 "-DFREEGLUT_BUILD_STATIC:BOOL=OFF" 24 24 ]; 25 25 26 - enableParallelBuilding = true; 27 - 28 26 meta = with stdenv.lib; { 29 27 description = "Create and manage windows containing OpenGL contexts"; 30 28 longDescription = ''
-2
pkgs/development/libraries/freetds/default.nix
··· 21 21 22 22 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 23 23 24 - enableParallelBuilding = true; 25 - 26 24 meta = with stdenv.lib; { 27 25 description = "Libraries to natively talk to Microsoft SQL Server and Sybase databases"; 28 26 homepage = "https://www.freetds.org";
-1
pkgs/development/libraries/gbenchmark/default.nix
··· 18 18 chmod -R u+w googletest 19 19 ''; 20 20 21 - enableParallelBuilding = true; 22 21 doCheck = true; 23 22 24 23 meta = with stdenv.lib; {
-2
pkgs/development/libraries/git2/default.nix
··· 27 27 28 28 propagatedBuildInputs = stdenv.lib.optional (!stdenv.isLinux) libiconv; 29 29 30 - enableParallelBuilding = true; 31 - 32 30 doCheck = false; # hangs. or very expensive? 33 31 34 32 meta = {
-2
pkgs/development/libraries/glfw/3.x.nix
··· 14 14 sha256 = "0b5lsxz1xkzip7fvbicjkxvg5ig8gbhx1zrlhandqc0rpk56bvyw"; 15 15 }; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 propagatedBuildInputs = [ libGL ]; 20 18 21 19 nativeBuildInputs = [ cmake ]
-1
pkgs/development/libraries/hotpatch/default.nix
··· 10 10 sha256 = "169vdh55wsbn6fl58lpzqx64v6ifzh7krykav33x1d9hsk98qjqh"; 11 11 }; 12 12 13 - enableParallelBuilding = true; 14 13 doCheck = true; 15 14 16 15 nativeBuildInputs = [ cmake ];
-2
pkgs/development/libraries/itk/4.x.nix
··· 22 22 "-DModule_ITKReview=ON" 23 23 ]; 24 24 25 - enableParallelBuilding = true; 26 - 27 25 nativeBuildInputs = [ cmake xz ]; 28 26 buildInputs = [ libX11 libuuid vtk_7 ] ++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa ]; 29 27
-2
pkgs/development/libraries/itk/default.nix
··· 28 28 "-DModule_ITKReview=ON" 29 29 ]; 30 30 31 - enableParallelBuilding = true; 32 - 33 31 nativeBuildInputs = [ cmake xz makeWrapper ]; 34 32 buildInputs = [ libX11 libuuid vtk_7 ] ++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa ]; 35 33
-2
pkgs/development/libraries/kmsxx/default.nix
··· 13 13 sha256 = "0xz4m9bk0naawxwpx5cy1j3cm6c8c9m5y551csk88y88x1g0z0xh"; 14 14 }; 15 15 16 - enableParallelBuilding = true; 17 - 18 16 cmakeFlags = stdenv.lib.optional (!withPython) "-DKMSXX_ENABLE_PYTHON=OFF"; 19 17 20 18 nativeBuildInputs = [ cmake pkgconfig ];
-2
pkgs/development/libraries/kpmcore/default.nix
··· 24 24 25 25 nativeBuildInputs = [ extra-cmake-modules ]; 26 26 27 - enableParallelBuilding = true; 28 - 29 27 meta = with stdenv.lib; { 30 28 maintainers = with lib.maintainers; [ peterhoeg ]; 31 29 # The build requires at least Qt 5.14:
-2
pkgs/development/libraries/leatherman/default.nix
··· 16 16 nativeBuildInputs = [ cmake ]; 17 17 buildInputs = [ boost curl ruby ]; 18 18 19 - enableParallelBuilding = true; 20 - 21 19 meta = with stdenv.lib; { 22 20 homepage = "https://github.com/puppetlabs/leatherman/"; 23 21 description = "A collection of C++ and CMake utility libraries";
-1
pkgs/development/libraries/libechonest/default.nix
··· 25 25 nativeBuildInputs = [ cmake doxygen ]; 26 26 buildInputs = [ qt4 qjson ]; 27 27 28 - enableParallelBuilding = true; 29 28 doCheck = false; # requires network access 30 29 31 30 meta = {
-2
pkgs/development/libraries/libgaminggear/default.nix
··· 20 20 gtk2 libcanberra libnotify pcre sqlite xorg.libXdmcp xorg.libpthreadstubs 21 21 ]; 22 22 23 - enableParallelBuilding = true; 24 - 25 23 cmakeFlags = [ 26 24 "-DINSTALL_CMAKE_MODULESDIR=lib/cmake" 27 25 "-DINSTALL_PKGCONFIGDIR=lib/pkgconfig"
-2
pkgs/development/libraries/libjson-rpc-cpp/default.nix
··· 56 56 nativeBuildInputs = [ cmake pkg-config ]; 57 57 buildInputs = [ jsoncpp argtable curl libmicrohttpd doxygen catch ]; 58 58 59 - enableParallelBuilding = true; 60 - 61 59 meta = with stdenv.lib; { 62 60 description = "C++ framework for json-rpc (json remote procedure call)"; 63 61 homepage = "https://github.com/cinemast/libjson-rpc-cpp";
-2
pkgs/development/libraries/libktorrent/default.nix
··· 23 23 24 24 propagatedBuildInputs = [ gmp boost ]; 25 25 26 - enableParallelBuilding = true; 27 - 28 26 passthru = { 29 27 inherit mainVersion; 30 28 };
-2
pkgs/development/libraries/libnabo/default.nix
··· 14 14 nativeBuildInputs = [ cmake ]; 15 15 buildInputs = [ eigen boost ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 cmakeFlags = [ 20 18 "-DEIGEN_INCLUDE_DIR=${eigen}/include/eigen3" 21 19 ];
-1
pkgs/development/libraries/libnats-c/default.nix
··· 18 18 buildInputs = [ libsodium openssl protobuf protobufc ]; 19 19 20 20 separateDebugInfo = true; 21 - enableParallelBuilding = true; 22 21 outputs = [ "out" "dev" ]; 23 22 24 23 meta = with stdenv.lib; {
-2
pkgs/development/libraries/libpointmatcher/default.nix
··· 14 14 nativeBuildInputs = [ cmake ]; 15 15 buildInputs = [ eigen boost libnabo ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 cmakeFlags = [ 20 18 "-DEIGEN_INCLUDE_DIR=${eigen}/include/eigen3" 21 19 ];
-2
pkgs/development/libraries/libressl/default.nix
··· 40 40 substituteInPlace ./tls/tls_config.c --replace '"/etc/ssl/cert.pem"' '"${cacert}/etc/ssl/certs/ca-bundle.crt"' 41 41 ''; 42 42 43 - enableParallelBuilding = true; 44 - 45 43 outputs = [ "bin" "dev" "out" "man" "nc" ]; 46 44 47 45 postFixup = ''
-2
pkgs/development/libraries/librime/default.nix
··· 16 16 17 17 buildInputs = [ boost glog leveldb marisa opencc libyamlcpp gmock ]; 18 18 19 - enableParallelBuilding = true; 20 - 21 19 meta = with stdenv.lib; { 22 20 homepage = "https://rime.im/"; 23 21 description = "Rime Input Method Engine, the core library";
-1
pkgs/development/libraries/libtins/default.nix
··· 29 29 "--with-boost=${boost.dev}" 30 30 ]; 31 31 32 - enableParallelBuilding = true; 33 32 doCheck = true; 34 33 preCheck = '' 35 34 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}$PWD${placeholder "out"}/lib
-2
pkgs/development/libraries/libtoxcore/default.nix
··· 28 28 29 29 nativeBuildInputs = [ cmake pkgconfig ]; 30 30 31 - enableParallelBuilding = true; 32 - 33 31 doCheck = false; # hangs, tries to access the net? 34 32 checkInputs = [ check ]; 35 33
-2
pkgs/development/libraries/libunarr/default.nix
··· 11 11 12 12 nativeBuildInputs = [ cmake ]; 13 13 14 - enableParallelBuilding = true; 15 - 16 14 meta = with stdenv.lib; { 17 15 homepage = "https://github.com/selmf/unarr"; 18 16 description = "A lightweight decompression library with support for rar, tar and zip archives";
-2
pkgs/development/libraries/libwhereami/default.nix
··· 17 17 18 18 buildInputs = [ boost curl leatherman ]; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 meta = with stdenv.lib; { 23 21 inherit (src.meta) homepage; 24 22 description = "Library to report hypervisor information from inside a VM";
-2
pkgs/development/libraries/medfile/default.nix
··· 9 9 sha256 = "1khzclkrd1yn9mz3g14ndgpsbj8j50v8dsjarcj6kkn9zgbbazc4"; 10 10 }; 11 11 12 - enableParallelBuilding = true; 13 - 14 12 nativeBuildInputs = [ cmake ]; 15 13 buildInputs = [ hdf5 ]; 16 14
-2
pkgs/development/libraries/metal/default.nix
··· 12 12 13 13 nativeBuildInputs = [ cmake ]; 14 14 15 - enableParallelBuilding = true; 16 - 17 15 meta = with stdenv.lib; { 18 16 description = "Single-header C++11 library designed to make you love template metaprogramming"; 19 17 homepage = "https://github.com/brunocodutra/metal";
-1
pkgs/development/libraries/mimalloc/default.nix
··· 17 17 }; 18 18 19 19 nativeBuildInputs = [ cmake ninja ]; 20 - enableParallelBuilding = true; 21 20 cmakeFlags = stdenv.lib.optional secureBuild [ "-DMI_SECURE=ON" ]; 22 21 23 22 postInstall = let
-2
pkgs/development/libraries/mlt/qt-5.nix
··· 75 75 76 76 CXXFLAGS = "-std=c++11"; 77 77 78 - enableParallelBuilding = true; 79 - 80 78 qtWrapperArgs = [ 81 79 "--prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1" 82 80 "--prefix LADSPA_PATH : ${ladspaPlugins}/lib/ladspa"
+1 -6
pkgs/development/libraries/msgpack/generic.nix
··· 11 11 12 12 nativeBuildInputs = [ cmake ]; 13 13 14 - enableParallelBuilding = true; 15 - 16 - cmakeFlags = [] 17 - ++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) 18 - "-DMSGPACK_BUILD_EXAMPLES=OFF" 19 - ; 14 + cmakeFlags = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-DMSGPACK_BUILD_EXAMPLES=OFF"; 20 15 21 16 meta = with stdenv.lib; { 22 17 description = "MessagePack implementation for C and C++";
-2
pkgs/development/libraries/ngt/default.nix
··· 15 15 NIX_ENFORCE_NO_NATIVE=! enableAVX; 16 16 __AVX2__ = if enableAVX then 1 else 0; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 meta = with stdenv.lib; { 21 19 homepage = "https://github.com/yahoojapan/NGT"; 22 20 description = "Nearest Neighbor Search with Neighborhood Graph and Tree for High-dimensional Data";
-2
pkgs/development/libraries/nlohmann_json/default.nix
··· 14 14 15 15 nativeBuildInputs = [ cmake ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 cmakeFlags = [ 20 18 "-DBuildTests=${if doCheck then "ON" else "OFF"}" 21 19 "-DJSON_MultipleHeaders=ON"
-2
pkgs/development/libraries/nuspell/default.nix
··· 16 16 17 17 outputs = [ "out" "lib" "dev" "man" ]; 18 18 19 - enableParallelBuilding = true; 20 - 21 19 postPatch = '' 22 20 rm -rf external/Catch2 23 21 ln -sf ${catch2.src} external/Catch2
-2
pkgs/development/libraries/nvidia-texture-tools/default.nix
··· 37 37 moveToOutput lib "$lib" 38 38 ''; 39 39 40 - enableParallelBuilding = true; 41 - 42 40 meta = with stdenv.lib; { 43 41 description = "A set of cuda-enabled texture tools and compressors"; 44 42 homepage = "https://github.com/castano/nvidia-texture-tools";
-2
pkgs/development/libraries/ogrepaged/default.nix
··· 31 31 32 32 cmakeFlags = [ "-DPAGEDGEOMETRY_BUILD_SAMPLES=OFF" ]; 33 33 34 - enableParallelBuilding = true; 35 - 36 34 meta = { 37 35 description = "Paged Geometry for Ogre3D"; 38 36 homepage = "https://github.com/RigsOfRods/ogre-paged";
-1
pkgs/development/libraries/opae/default.nix
··· 37 37 ''; 38 38 39 39 cmakeFlags = [ "-DBUILD_ASE=1" ]; 40 - enableParallelBuilding = true; 41 40 42 41 meta = with stdenv.lib; { 43 42 description = "Open Programmable Acceleration Engine SDK";
-2
pkgs/development/libraries/openbr/default.nix
··· 16 16 17 17 nativeBuildInputs = [ cmake ]; 18 18 19 - enableParallelBuilding = true; 20 - 21 19 meta = { 22 20 description = "Open Source Biometric Recognition"; 23 21 homepage = "http://openbiometrics.org/";
-2
pkgs/development/libraries/opencollada/default.nix
··· 18 18 19 19 propagatedBuildInputs = [ libxml2 pcre ]; 20 20 21 - enableParallelBuilding = true; 22 - 23 21 patchPhase = '' 24 22 patch -p1 < ${./pcre.patch} 25 23 '' + lib.optionalString stdenv.isDarwin ''
-2
pkgs/development/libraries/opencv/3.x.nix
··· 245 245 "-DEIGEN_INCLUDE_PATH=${eigen}/include/eigen3" 246 246 ]; 247 247 248 - enableParallelBuilding = true; 249 - 250 248 postBuild = lib.optionalString enableDocs '' 251 249 make doxygen 252 250 '';
-2
pkgs/development/libraries/opencv/4.x.nix
··· 253 253 "-DOPENCV_SKIP_PYTHON_LOADER=ON" 254 254 ]; 255 255 256 - enableParallelBuilding = true; 257 - 258 256 postBuild = lib.optionalString enableDocs '' 259 257 make doxygen 260 258 '';
-2
pkgs/development/libraries/opencv/default.nix
··· 69 69 (opencvFlag "GSTREAMER" enableGStreamer) 70 70 ]; 71 71 72 - enableParallelBuilding = true; 73 - 74 72 hardeningDisable = [ "bindnow" "relro" ]; 75 73 76 74 # Fix pkgconfig file that gets broken with multiple outputs
-2
pkgs/development/libraries/opensubdiv/default.nix
··· 41 41 "-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/cc" 42 42 ]; 43 43 44 - enableParallelBuilding = true; 45 - 46 44 postInstall = "rm $out/lib/*.a"; 47 45 48 46 meta = {
-1
pkgs/development/libraries/openxr-loader/default.nix
··· 13 13 14 14 nativeBuildInputs = [ cmake python3 ]; 15 15 buildInputs = [ libX11 libXxf86vm libXrandr vulkan-headers libGL ]; 16 - enableParallelBuilding = true; 17 16 18 17 cmakeFlags = [ "-DBUILD_TESTS=OFF" ]; 19 18
-2
pkgs/development/libraries/pangolin/default.nix
··· 30 30 ] 31 31 ++ lib.optionals stdenv.isDarwin [ Carbon Cocoa ]; 32 32 33 - enableParallelBuilding = true; 34 - 35 33 # The tests use cmake's findPackage to find the installed version of 36 34 # pangolin, which isn't what we want (or available). 37 35 doCheck = false;
-2
pkgs/development/libraries/partio/default.nix
··· 16 16 nativeBuildInputs = [ unzip cmake doxygen ]; 17 17 buildInputs = [ freeglut libGLU libGL zlib swig python xorg.libXi xorg.libXmu ]; 18 18 19 - enableParallelBuilding = true; 20 - 21 19 buildPhase = '' 22 20 make partio 23 21
-2
pkgs/development/libraries/pcl/default.nix
··· 13 13 sha256 = "1cli2rxqsk6nxp36p5mgvvahjz8hm4fb68yi8cf9nw4ygbcvcwb1"; 14 14 }; 15 15 16 - enableParallelBuilding = true; 17 - 18 16 nativeBuildInputs = [ pkgconfig cmake ]; 19 17 buildInputs = [ qhull flann boost eigen libusb1 libpcap 20 18 libpng vtk qtbase libXt ]
-2
pkgs/development/libraries/physfs/default.nix
··· 17 17 buildInputs = [ zlib ] 18 18 ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Foundation ]; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 patchPhase = '' 23 21 sed s,-Werror,, -i CMakeLists.txt 24 22 '';
-1
pkgs/development/libraries/physics/geant4/default.nix
··· 87 87 "-DINVENTOR_LIBRARY_RELEASE=${coin3d}/lib/libCoin.so" 88 88 ]; 89 89 90 - enableParallelBuilding = true; 91 90 nativeBuildInputs = [ cmake ]; 92 91 93 92 buildInputs = [ libGLU xlibsWrapper libXmu ]
-2
pkgs/development/libraries/poco/default.nix
··· 21 21 "-DPOCO_UNBUNDLED=ON" 22 22 ]; 23 23 24 - enableParallelBuilding = true; 25 - 26 24 meta = with stdenv.lib; { 27 25 homepage = "https://pocoproject.org/"; 28 26 description = "Cross-platform C++ libraries with a network/internet focus";
-1
pkgs/development/libraries/precice/default.nix
··· 22 22 23 23 nativeBuildInputs = [ cmake gcc ]; 24 24 buildInputs = [ boost eigen libxml2 openmpi python3 python3.pkgs.numpy ]; 25 - enableParallelBuilding = true; 26 25 27 26 meta = { 28 27 description = "preCICE stands for Precise Code Interaction Coupling Environment";
-2
pkgs/development/libraries/qca2/default.nix
··· 13 13 buildInputs = [ openssl qt ] 14 14 ++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security; 15 15 16 - enableParallelBuilding = true; 17 - 18 16 # tells CMake to use this CA bundle file if it is accessible 19 17 preConfigure = '' 20 18 export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt
-2
pkgs/development/libraries/qt-5/modules/qtbase.nix
··· 356 356 ] 357 357 ); 358 358 359 - enableParallelBuilding = true; 360 - 361 359 postInstall = 362 360 # Move selected outputs. 363 361 ''
-2
pkgs/development/libraries/range-v3/default.nix
··· 24 24 doCheck = !stdenv.isAarch64; 25 25 checkTarget = "test"; 26 26 27 - enableParallelBuilding = true; 28 - 29 27 meta = with stdenv.lib; { 30 28 description = "Experimental range library for C++11/14/17"; 31 29 homepage = "https://github.com/ericniebler/range-v3";
-2
pkgs/development/libraries/science/biology/mirtk/default.nix
··· 31 31 install -Dm644 -t "$out/share/bash-completion/completions/mirtk" share/completion/bash/mirtk 32 32 ''; 33 33 34 - enableParallelBuilding = true; 35 - 36 34 nativeBuildInputs = [ cmake gtest ]; 37 35 buildInputs = [ boost eigen python vtk zlib tbb ]; 38 36
-2
pkgs/development/libraries/science/electronics/qcsxcad/default.nix
··· 37 37 qtbase 38 38 ]; 39 39 40 - enableParallelBuilding = true; 41 - 42 40 meta = with lib; { 43 41 description = "Qt library for CSXCAD"; 44 42 homepage = "https://github.com/thliebig/QCSXCAD";
-1
pkgs/development/libraries/science/math/caffe2/default.nix
··· 126 126 ''; 127 127 128 128 doCheck = false; 129 - enableParallelBuilding = true; 130 129 131 130 meta = { 132 131 homepage = "https://caffe2.ai/";
-2
pkgs/development/libraries/science/math/itpp/default.nix
··· 35 35 "-DGTEST_DIR:PATH=${gtest.src}/googletest" 36 36 ]; 37 37 38 - enableParallelBuilding = true; 39 - 40 38 doCheck = true; 41 39 42 40 checkPhase = ''
-2
pkgs/development/libraries/science/math/liblapack/default.nix
··· 33 33 34 34 doCheck = true; 35 35 36 - enableParallelBuilding = true; 37 - 38 36 meta = with stdenv.lib; { 39 37 inherit version; 40 38 description = "Linear Algebra PACKage";
-2
pkgs/development/libraries/science/math/or-tools/default.nix
··· 53 53 python.pkgs.protobuf python.pkgs.six 54 54 ]; 55 55 56 - enableParallelBuilding = true; 57 - 58 56 outputs = [ "out" "python" ]; 59 57 60 58 meta = with stdenv.lib; {
-2
pkgs/development/libraries/science/math/scalapack/default.nix
··· 18 18 nativeBuildInputs = [ cmake openssh ]; 19 19 buildInputs = [ mpi gfortran blas lapack ]; 20 20 21 - enableParallelBuilding = true; 22 - 23 21 doCheck = true; 24 22 25 23 preConfigure = ''
-2
pkgs/development/libraries/simgear/default.nix
··· 21 21 libICE libSM libXt libXmu libGLU libGL boost zlib libjpeg freealut 22 22 openscenegraph openal expat apr curl ]; 23 23 24 - enableParallelBuilding = true; 25 - 26 24 meta = with stdenv.lib; { 27 25 description = "Simulation construction toolkit"; 28 26 homepage = "https://gitorious.org/fg/simgear";
-1
pkgs/development/libraries/telepathy/qt/default.nix
··· 20 20 # On 0.9.7, they do not even build with QT4 21 21 cmakeFlags = stdenv.lib.optional (!doCheck) "-DENABLE_TESTS=OFF"; 22 22 23 - enableParallelBuilding = true; 24 23 doCheck = false; # giving up for now 25 24 26 25 meta = with stdenv.lib; {
-2
pkgs/development/libraries/tiledb/default.nix
··· 47 47 gtest 48 48 ]; 49 49 50 - enableParallelBuilding = true; 51 - 52 50 buildInputs = [ 53 51 catch2 54 52 zlib
-2
pkgs/development/libraries/vc/0.7.nix
··· 13 13 14 14 nativeBuildInputs = [ cmake ]; 15 15 16 - enableParallelBuilding = true; 17 - 18 16 postPatch = '' 19 17 sed -i '/OptimizeForArchitecture()/d' cmake/VcMacros.cmake 20 18 sed -i '/AutodetectHostArchitecture()/d' print_target_architecture.cmake
-2
pkgs/development/libraries/vc/default.nix
··· 13 13 14 14 nativeBuildInputs = [ cmake ]; 15 15 16 - enableParallelBuilding = true; 17 - 18 16 postPatch = '' 19 17 sed -i '/OptimizeForArchitecture()/d' cmake/VcMacros.cmake 20 18 sed -i '/AutodetectHostArchitecture()/d' print_target_architecture.cmake
-2
pkgs/development/libraries/vigra/default.nix
··· 31 31 ++ stdenv.lib.optionals (stdenv.hostPlatform.system == "x86_64-linux") 32 32 [ "-DCMAKE_CXX_FLAGS=-fPIC" "-DCMAKE_C_FLAGS=-fPIC" ]; 33 33 34 - enableParallelBuilding = true; 35 - 36 34 # fails with "./test_watersheds3d: error while loading shared libraries: libvigraimpex.so.11: cannot open shared object file: No such file or directory" 37 35 doCheck = false; 38 36
-2
pkgs/development/libraries/vmmlib/default.nix
··· 21 21 buildInputs = [ boost lapack ] 22 22 ++ stdenv.lib.optionals stdenv.isDarwin [ Accelerate CoreGraphics CoreVideo ]; 23 23 24 - enableParallelBuilding = true; 25 - 26 24 doCheck = !stdenv.isDarwin; 27 25 28 26 checkTarget = "test";
-2
pkgs/development/libraries/vtk/generic.nix
··· 84 84 sed -i 's/fprintf(output, shift)/fprintf(output, "%s", shift)/g' ./ThirdParty/libxml2/vtklibxml2/xpath.c 85 85 ''; 86 86 87 - enableParallelBuilding = true; 88 - 89 87 meta = with lib; { 90 88 description = "Open source libraries for 3D computer graphics, image processing and visualization"; 91 89 homepage = "https://www.vtk.org/";
-1
pkgs/development/libraries/vulkan-loader/default.nix
··· 14 14 15 15 nativeBuildInputs = [ pkgconfig cmake ]; 16 16 buildInputs = [ python3 xlibsWrapper libxcb libXrandr libXext wayland ]; 17 - enableParallelBuilding = true; 18 17 19 18 preConfigure = '' 20 19 substituteInPlace loader/vulkan.pc.in \
-2
pkgs/development/libraries/vxl/default.nix
··· 24 24 "-DCMAKE_C_FLAGS=-fPIC" 25 25 ]; 26 26 27 - enableParallelBuilding = true; 28 - 29 27 meta = { 30 28 description = "C++ Libraries for Computer Vision Research and Implementation"; 31 29 homepage = "http://vxl.sourceforge.net/";
-2
pkgs/development/libraries/wt/default.nix
··· 17 17 inherit sha256; 18 18 }; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 nativeBuildInputs = [ cmake pkg-config ]; 23 21 buildInputs = [ 24 22 boost doxygen qt48Full libharu
-3
pkgs/development/libraries/x265/default.nix
··· 37 37 buildLib = has12Bit: stdenv.mkDerivation rec { 38 38 name = "libx265-${if has12Bit then "12" else "10"}-${version}"; 39 39 inherit src; 40 - enableParallelBuilding = true; 41 40 42 41 postPatch = '' 43 42 sed -i 's/unknown/${version}/g' source/cmake/version.cmake ··· 67 66 stdenv.mkDerivation rec { 68 67 pname = "x265"; 69 68 inherit version src; 70 - 71 - enableParallelBuilding = true; 72 69 73 70 postPatch = '' 74 71 sed -i 's/unknown/${version}/g' source/cmake/version.cmake
-2
pkgs/development/libraries/xgboost/default.nix
··· 17 17 sha256 = "1zs15k9crkiq7bnr4gqq53mkn3w8z9dq4nwlavmfcr5xr5gw2pw4"; 18 18 }; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 nativeBuildInputs = [ cmake ] ++ lib.optional stdenv.isDarwin llvmPackages.openmp; 23 21 24 22 buildInputs = lib.optional cudaSupport cudatoolkit
-2
pkgs/development/libraries/zeromq/4.x.nix
··· 15 15 nativeBuildInputs = [ cmake asciidoc pkg-config ]; 16 16 buildInputs = [ libsodium ]; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 doCheck = false; # fails all the tests (ctest) 21 19 22 20 cmakeFlags = stdenv.lib.optional enableDrafts "-DENABLE_DRAFTS=ON";
-1
pkgs/development/python-modules/dlib/default.nix
··· 24 24 25 25 checkInputs = [ pytest more-itertools ]; 26 26 27 - enableParallelBuilding = true; 28 27 dontUseCmakeConfigure = true; 29 28 }
-2
pkgs/development/python-modules/hoomd-blue/default.nix
··· 33 33 propagatedBuildInputs = [ python.pkgs.numpy ] 34 34 ++ stdenv.lib.optionals withMPI [ python.pkgs.mpi4py ]; 35 35 36 - enableParallelBuilding = true; 37 - 38 36 dontAddPrefix = true; 39 37 cmakeFlags = [ 40 38 "-DENABLE_MPI=${onOffBool withMPI}"
-2
pkgs/development/python-modules/libgpuarray/default.nix
··· 63 63 Mako 64 64 ]; 65 65 66 - enableParallelBuilding = true; 67 - 68 66 nativeBuildInputs = [ cmake ]; 69 67 70 68 buildInputs = [
-2
pkgs/development/python-modules/pyside/apiextractor.nix
··· 11 11 sha256 = "1zj8yrxy08iv1pk38djxw3faimm226w6wmi0gm32w4yczblylwz3"; 12 12 }; 13 13 14 - enableParallelBuilding = true; 15 - 16 14 outputs = [ "out" "dev" ]; 17 15 18 16 preConfigure = ''
-2
pkgs/development/python-modules/pyside/default.nix
··· 11 11 sha256 = "90f2d736e2192ac69e5a2ac798fce2b5f7bf179269daa2ec262986d488c3b0f7"; 12 12 }; 13 13 14 - enableParallelBuilding = true; 15 - 16 14 outputs = [ "out" "dev" ]; 17 15 18 16 preConfigure = ''
-2
pkgs/development/python-modules/pyside/generatorrunner.nix
··· 13 13 sha256 = "0vzk3cp0pfbhd921r8f1xkcz96znla39dhj074k623x9k26lj2sj"; 14 14 }; 15 15 16 - enableParallelBuilding = true; 17 - 18 16 outputs = [ "out" "dev" ]; 19 17 20 18 preConfigure = ''
-2
pkgs/development/python-modules/pyside/shiboken.nix
··· 27 27 sha256 = "0x2lyg52m6a0vn0665pgd1z1qrydglyfxxcggw6xzngpnngb6v5v"; 28 28 }; 29 29 30 - enableParallelBuilding = true; 31 - 32 30 nativeBuildInputs = [ cmake pkg-config pysideApiextractor pysideGeneratorrunner sphinx qt4 ]; 33 31 34 32 buildInputs = [ python libxml2 libxslt ];
-2
pkgs/development/python-modules/scipy/default.nix
··· 37 37 ln -s ${numpy.cfg} site.cfg 38 38 ''; 39 39 40 - enableParallelBuilding = true; 41 - 42 40 checkPhase = '' 43 41 runHook preCheck 44 42 pushd dist
-2
pkgs/development/tools/analysis/kcov/default.nix
··· 16 16 17 17 buildInputs = [ zlib curl elfutils python libiberty libopcodes ]; 18 18 19 - enableParallelBuilding = true; 20 - 21 19 meta = with stdenv.lib; { 22 20 description = "Code coverage tester for compiled programs, Python scripts and shell scripts"; 23 21
-2
pkgs/development/tools/analysis/retdec/default.nix
··· 216 216 substituteInPlace scripts/retdec-unpacker.py --replace "'upx'" "'${upx}/bin/upx'" 217 217 ''; 218 218 219 - enableParallelBuilding = true; 220 - 221 219 doInstallCheck = true; 222 220 installCheckPhase = '' 223 221 ${python3.interpreter} "$out/bin/retdec-tests-runner.py"
-2
pkgs/development/tools/analysis/snowman/default.nix
··· 19 19 export sourceRoot=$sourceRoot/src 20 20 ''; 21 21 22 - enableParallelBuilding = true; 23 - 24 22 meta = with stdenv.lib; { 25 23 description = "Native code to C/C++ decompiler"; 26 24 homepage = "http://derevenets.com/";
-2
pkgs/development/tools/bloaty/default.nix
··· 16 16 17 17 buildInputs = [ zlib ]; 18 18 19 - enableParallelBuilding = true; 20 - 21 19 doCheck = true; 22 20 23 21 installPhase = ''
-2
pkgs/development/tools/boomerang/default.nix
··· 14 14 nativeBuildInputs = [ cmake bison flex ]; 15 15 buildInputs = [ qtbase capstone ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 meta = with lib; { 20 18 homepage = "https://github.com/BoomerangDecompiler/boomerang"; 21 19 license = licenses.bsd3;
-2
pkgs/development/tools/misc/cli11/default.nix
··· 30 30 sed -i '/TrueFalseTest/d' tests/CMakeLists.txt 31 31 ''; 32 32 33 - enableParallelBuilding = true; 34 - 35 33 meta = with stdenv.lib; { 36 34 description = "Command line parser for C++11"; 37 35 homepage = "https://github.com/CLIUtils/CLI11";
-3
pkgs/development/tools/misc/creduce/default.nix
··· 32 32 lscpu ${util-linux}/bin/lscpu 33 33 ''; 34 34 35 - 36 - enableParallelBuilding = true; 37 - 38 35 postInstall = '' 39 36 wrapProgram $out/bin/creduce --prefix PERL5LIB : "$PERL5LIB" 40 37 '';
-3
pkgs/development/tools/misc/kdbg/default.nix
··· 14 14 nativeBuildInputs = [ cmake extra-cmake-modules makeWrapper ]; 15 15 buildInputs = [ qt5.qtbase ki18n kconfig kiconthemes kxmlgui kwindowsystem ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 - 20 17 postInstall = '' 21 18 wrapProgram $out/bin/kdbg --prefix QT_PLUGIN_PATH : ${qtbase}/${qtbase.qtPluginPrefix} 22 19 '';
-2
pkgs/development/tools/misc/uncrustify/default.nix
··· 14 14 15 15 nativeBuildInputs = [ cmake python ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 meta = with stdenv.lib; { 20 18 description = "Source code beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA"; 21 19 homepage = "http://uncrustify.sourceforge.net/";
-2
pkgs/development/tools/rtags/default.nix
··· 25 25 LIBCLANG_LIBDIR="${llvmPackages.clang.cc}/lib" 26 26 ''; 27 27 28 - enableParallelBuilding = true; 29 - 30 28 meta = { 31 29 description = "C/C++ client-server indexer based on clang"; 32 30 homepage = "https://github.com/andersbakken/rtags";
-1
pkgs/development/tools/spirv-tools/default.nix
··· 14 14 rev = "v${version}"; 15 15 sha256 = "00b7xgyrcb2qq63pp3cnw5q1xqx2d9rfn65lai6n6r89s1vh3vg6"; 16 16 }; 17 - enableParallelBuilding = true; 18 17 19 18 nativeBuildInputs = [ cmake python3 ]; 20 19
-1
pkgs/development/tools/trellis/default.nix
··· 37 37 # TODO: should this be in stdenv instead? 38 38 "-DCMAKE_INSTALL_DATADIR=${placeholder "out"}/share" 39 39 ]; 40 - enableParallelBuilding = true; 41 40 42 41 preConfigure = with builtins; '' 43 42 rmdir database && ln -sfv ${elemAt srcs 1} ./database
-2
pkgs/development/tools/vulkan-validation-layers/default.nix
··· 80 80 wayland 81 81 ]; 82 82 83 - enableParallelBuilding = true; 84 - 85 83 cmakeFlags = [ 86 84 "-DGLSLANG_INSTALL_DIR=${localGlslang}" 87 85 "-DSPIRV_HEADERS_INSTALL_DIR=${localSpirvHeaders}"
-1
pkgs/games/arx-libertatis/default.nix
··· 37 37 "-DImageMagick_mogrify_EXECUTABLE=${imagemagick.out}/bin/mogrify" 38 38 ]; 39 39 40 - enableParallelBuilding = true; 41 40 dontWrapQtApps = true; 42 41 43 42 postInstall = ''
-2
pkgs/games/dhewm3/default.nix
··· 24 24 nativeBuildInputs = [ cmake ]; 25 25 buildInputs = [ SDL2 libGLU libGL zlib libjpeg libogg libvorbis openal curl ]; 26 26 27 - enableParallelBuilding = true; 28 - 29 27 hardeningDisable = [ "format" ]; 30 28 31 29 meta = with stdenv.lib; {
-1
pkgs/games/dwarf-fortress/dfhack/default.nix
··· 146 146 ln -s ${ruby}/lib/libruby-*.so $out/hack/libruby.so 147 147 ''; 148 148 149 - enableParallelBuilding = true; 150 149 }; 151 150 in 152 151
-2
pkgs/games/dwarf-fortress/unfuck.nix
··· 79 79 install -D -m755 ../build/libgraphics.so $out/lib/libgraphics.so 80 80 ''; 81 81 82 - enableParallelBuilding = true; 83 - 84 82 # Breaks dfhack because of inlining. 85 83 hardeningDisable = [ "fortify" ]; 86 84
-2
pkgs/games/enyo-doom/default.nix
··· 15 15 16 16 buildInputs = [ qtbase ]; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 meta = { 21 19 homepage = "https://gitlab.com/sdcofer70/enyo-doom"; 22 20 description = "Frontend for Doom engines";
-2
pkgs/games/eternity-engine/default.nix
··· 13 13 nativeBuildInputs = [ cmake makeWrapper ]; 14 14 buildInputs = [ libGL SDL SDL_mixer SDL_net ]; 15 15 16 - enableParallelBuilding = true; 17 - 18 16 installPhase = '' 19 17 install -Dm755 source/eternity $out/lib/eternity/eternity 20 18 cp -r $src/base $out/lib/eternity/base
-2
pkgs/games/flightgear/default.nix
··· 69 69 "--set FG_ROOT ${data}/share/FlightGear" 70 70 ]; 71 71 72 - enableParallelBuilding = true; 73 - 74 72 meta = with stdenv.lib; { 75 73 description = "Flight simulator"; 76 74 maintainers = with maintainers; [ raskin ];
+1 -6
pkgs/games/freeorion/default.nix
··· 15 15 }; 16 16 17 17 buildInputs = [ 18 - (boost168.override { enablePython = true; }) 18 + (boost168.override { enablePython = true; }) 19 19 SDL2 python2 freetype openal libogg libvorbis zlib libpng libtiff libjpeg libGLU libGL glew ]; 20 20 21 21 nativeBuildInputs = [ cmake doxygen graphviz makeWrapper ]; 22 - 23 - enableParallelBuilding = true; 24 - 25 - patches = [ 26 - ]; 27 22 28 23 postInstall = '' 29 24 mkdir -p $out/fixpaths
-2
pkgs/games/gzdoom/default.nix
··· 53 53 zmusic 54 54 ]; 55 55 56 - enableParallelBuilding = true; 57 - 58 56 NIX_CFLAGS_LINK = "-lopenal -lfluidsynth"; 59 57 60 58 installPhase = ''
-2
pkgs/games/katago/default.nix
··· 103 103 --prefix LD_LIBRARY_PATH : "/run/opengl-driver/lib" 104 104 ''; 105 105 106 - enableParallelBuilding = true; 107 - 108 106 meta = with stdenv.lib; { 109 107 description = "Go engine modeled after AlphaGo Zero"; 110 108 homepage = "https://github.com/lightvector/katago";
-2
pkgs/games/leela-zero/default.nix
··· 17 17 18 18 nativeBuildInputs = [ cmake ]; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 meta = with stdenv.lib; { 23 21 description = "Go engine modeled after AlphaGo Zero"; 24 22 homepage = "https://github.com/gcp/leela-zero";
-2
pkgs/games/mudlet/default.nix
··· 24 24 WITH_FONTS = "NO"; 25 25 WITH_UPDATER = "NO"; 26 26 27 - enableParallelBuilding = true; 28 - 29 27 installPhase = '' 30 28 mkdir -pv $out/lib 31 29 cp 3rdparty/edbee-lib/edbee-lib/qslog/lib/libQsLog.so $out/lib
-2
pkgs/games/multimc/default.nix
··· 16 16 nativeBuildInputs = [ cmake file makeWrapper ]; 17 17 buildInputs = [ qtbase jdk zlib ]; 18 18 19 - enableParallelBuilding = true; 20 - 21 19 cmakeFlags = [ "-DMultiMC_LAYOUT=lin-system" ]; 22 20 23 21 postInstall = ''
-2
pkgs/games/odamex/default.nix
··· 12 12 nativeBuildInputs = [ cmake pkgconfig ]; 13 13 buildInputs = [ SDL SDL_mixer SDL_net wxGTK30 ]; 14 14 15 - enableParallelBuilding = true; 16 - 17 15 meta = { 18 16 homepage = "http://odamex.net/"; 19 17 description = "A client/server port for playing old-school Doom online";
-2
pkgs/games/openclonk/default.nix
··· 24 24 ln -sv ${soundtrack_src} $out/share/games/openclonk/Music.ocg 25 25 ''; 26 26 27 - enableParallelBuilding = true; 28 - 29 27 nativeBuildInputs = [ cmake pkgconfig ]; 30 28 31 29 buildInputs = [
-1
pkgs/games/openjk/default.nix
··· 31 31 }; 32 32 33 33 dontAddPrefix = true; 34 - enableParallelBuilding = true; 35 34 36 35 nativeBuildInputs = [ makeWrapper cmake ]; 37 36 buildInputs = [ libjpeg zlib libpng libGL SDL2 ];
-2
pkgs/games/openmw/default.nix
··· 23 23 sha256 = "0rm32zsmxvr6b0jjihfj543skhicbw5kg6shjx312clhlm035w2x"; 24 24 }; 25 25 26 - enableParallelBuilding = true; 27 - 28 26 nativeBuildInputs = [ cmake pkg-config ]; 29 27 buildInputs = [ boost ffmpeg_3 bullet mygui openscenegraph_ SDL2 unshield openal libXt qtbase ]; 30 28
-2
pkgs/games/openrct2/default.nix
··· 68 68 "-DDOWNLOAD_TITLE_SEQUENCES=OFF" 69 69 ]; 70 70 71 - enableParallelBuilding = true; 72 - 73 71 preFixup = "ln -s $out/share/openrct2 $out/bin/data"; 74 72 75 73 meta = with stdenv.lib; {
-2
pkgs/games/openspades/default.nix
··· 55 55 cp $notoFont $out/share/games/openspades/Resources/ 56 56 ''; 57 57 58 - enableParallelBuilding = true; 59 - 60 58 NIX_CFLAGS_LINK = "-lopenal"; 61 59 62 60 meta = with stdenv.lib; {
-2
pkgs/games/quake2/yquake2/default.nix
··· 24 24 sha256 = "1dszbvxlh1npq4nv9s4wv4lcyfgb01k92ncxrrczsxy1dddg86pp"; 25 25 }; 26 26 27 - enableParallelBuilding = true; 28 - 29 27 nativeBuildInputs = [ cmake ]; 30 28 31 29 buildInputs = [ SDL2 libGL curl ]
-2
pkgs/games/quake2/yquake2/games.nix
··· 37 37 rev = "${lib.toUpper id}_${builtins.replaceStrings ["."] ["_"] version}"; 38 38 }; 39 39 40 - enableParallelBuilding = true; 41 - 42 40 nativeBuildInputs = [ cmake ]; 43 41 44 42 installPhase = ''
-2
pkgs/games/rigsofrods/default.nix
··· 14 14 sha256 = "0cb1il7qm45kfhh6h6jwfpxvjlh2dmg8z1yz9kj4d6098myf2lg4"; 15 15 }; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 installPhase = '' 20 18 sed -e "s@/usr/local/lib/OGRE@${ogre}/lib/OGRE@" -i ../tools/linux/binaries/plugins.cfg 21 19 mkdir -p $out/share/rigsofrods
-3
pkgs/games/riko4/default.nix
··· 15 15 }; 16 16 buildInputs = [ SDL2 libGLU ]; 17 17 nativeBuildInputs = [ cmake ]; 18 - enableParallelBuilding = true; 19 18 20 19 meta = with stdenv.lib; { 21 20 homepage = "https://github.com/grimfang4/sdl-gpu"; ··· 56 55 EOF 57 56 chmod +x $out/bin/riko4 58 57 ''; 59 - 60 - enableParallelBuilding = true; 61 58 62 59 meta = with stdenv.lib; { 63 60 homepage = "https://github.com/incinirate/Riko4";
-2
pkgs/games/solarus/default.nix
··· 22 22 openal libmodplug libvorbis 23 23 qtbase glm ]; 24 24 25 - enableParallelBuilding = true; 26 - 27 25 preFixup = '' 28 26 mkdir $lib/ 29 27 mv $out/lib $lib
-2
pkgs/games/spring/springlobby.nix
··· 26 26 }) 27 27 ]; 28 28 29 - enableParallelBuilding = true; 30 - 31 29 postInstall = '' 32 30 wrapProgram $out/bin/springlobby \ 33 31 --prefix PATH : "${spring}/bin" \
-2
pkgs/games/stepmania/default.nix
··· 32 32 ln -s $out/stepmania-5.1/stepmania $out/bin/stepmania 33 33 ''; 34 34 35 - enableParallelBuilding = true; 36 - 37 35 meta = with lib; { 38 36 homepage = "https://www.stepmania.com/"; 39 37 description = "Free dance and rhythm game for Windows, Mac, and Linux";
-2
pkgs/games/super-tux-kart/default.nix
··· 76 76 wrapProgram $out/bin/supertuxkart --set-default SUPERTUXKART_ASSETS_DIR "${assets}" 77 77 ''; 78 78 79 - enableParallelBuilding = true; 80 - 81 79 meta = with lib; { 82 80 description = "A Free 3D kart racing game"; 83 81 longDescription = ''
-1
pkgs/games/the-butterfly-effect/default.nix
··· 17 17 qt5.qtbase qt5.qtsvg qt5.qttranslations box2d which cmake 18 18 gettext 19 19 ]; 20 - enableParallelBuilding = true; 21 20 22 21 installPhase = '' 23 22 make DESTDIR=.. install
-2
pkgs/games/warsow/engine.nix
··· 32 32 33 33 cmakeFlags = [ "-DQFUSION_GAME=Warsow" ]; 34 34 35 - enableParallelBuilding = true; 36 - 37 35 installPhase = '' 38 36 mkdir -p $out/lib 39 37 cp -r libs $out/lib/warsow
-2
pkgs/games/wesnoth/default.nix
··· 23 23 24 24 cmakeFlags = [ "-DENABLE_TOOLS=${if enableTools then "ON" else "OFF"}" ]; 25 25 26 - enableParallelBuilding = true; 27 - 28 26 meta = with stdenv.lib; { 29 27 description = "The Battle for Wesnoth, a free, turn-based strategy game with a fantasy theme"; 30 28 longDescription = ''
-2
pkgs/games/widelands/default.nix
··· 53 53 mkdir -p "$out/share/applications/" 54 54 cp -v "../debian/org.widelands.widelands.desktop" "$out/share/applications/" 55 55 ''; 56 - 57 - enableParallelBuilding = true; 58 56 }
-2
pkgs/games/zandronum/default.nix
··· 51 51 then [ "-DSERVERONLY=ON" ] 52 52 else [ "-DFMOD_LIBRARY=${fmod}/lib/libfmodex.so" ]); 53 53 54 - enableParallelBuilding = true; 55 - 56 54 hardeningDisable = [ "format" ]; 57 55 58 56 installPhase = ''
-2
pkgs/games/zdoom/default.nix
··· 25 25 26 26 sourceRoot = "."; 27 27 28 - enableParallelBuilding = true; 29 - 30 28 NIX_CFLAGS_LINK = [ "-lopenal" "-lfluidsynth" ]; 31 29 32 30 preConfigure = ''
+1 -2
pkgs/games/zdoom/zdbsp.nix
··· 11 11 12 12 nativeBuildInputs = [cmake unzip]; 13 13 buildInputs = [zlib]; 14 - sourceRoot = "."; 15 - enableParallelBuilding = true; 14 + 16 15 installPhase = '' 17 16 install -Dm755 zdbsp $out/bin/zdbsp 18 17 '';
-2
pkgs/misc/apulse/default.nix
··· 14 14 sha256 = "1p6fh6ah5v3qz7dxhcsixx38bxg44ypbim4m03bxk3ls5i9xslmn"; 15 15 }; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 nativeBuildInputs = [ cmake pkgconfig ]; 20 18 21 19 buildInputs = [ alsaLib glib ];
+1 -1
pkgs/misc/dumb/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 pname = "dumb"; 5 5 version = "2.0.3"; 6 - enableParallelBuilding = true; 6 + 7 7 nativeBuildInputs = [ cmake ]; 8 8 buildInputs = [ allegro SDL2 ]; 9 9
-1
pkgs/misc/emulators/citra/default.nix
··· 11 11 sha256 = "0c1zn1f84h4f6n6p0aqz905yvv5qpdmkj2z58yla6bfgbzabfyrj"; 12 12 }; 13 13 14 - enableParallelBuilding = true; 15 14 nativeBuildInputs = [ cmake ]; 16 15 buildInputs = [ SDL2 qtbase qtmultimedia boost ]; 17 16
-2
pkgs/misc/emulators/dolphin-emu/default.nix
··· 69 69 "-DENABLE_LTO=True" 70 70 ]; 71 71 72 - enableParallelBuilding = true; 73 - 74 72 nativeBuildInputs = [ 75 73 pkgconfig 76 74 cmake
-1
pkgs/misc/emulators/dolphin-emu/master.nix
··· 30 30 sha256 = "0vv3ahk6zdx2hx5diq4jkhl289wjybqcr4lwinrkfiywb83hcabg"; 31 31 }; 32 32 33 - enableParallelBuilding = true; 34 33 nativeBuildInputs = [ cmake pkgconfig ] 35 34 ++ lib.optional stdenv.isLinux wrapQtAppsHook; 36 35
-2
pkgs/misc/emulators/emulationstation/default.nix
··· 27 27 install -D ../emulationstation $out/bin/emulationstation 28 28 ''; 29 29 30 - enableParallelBuilding = true; 31 - 32 30 meta = { 33 31 description = "A flexible emulator front-end supporting keyboardless navigation and custom system themes"; 34 32 homepage = "https://emulationstation.org";
-1
pkgs/misc/emulators/melonDS/default.nix
··· 21 21 sha256 = "0m45m1ch0az8l3d3grjbqvi5vvydbffxwka9w3k3qiia50m7fnph"; 22 22 }; 23 23 24 - enableParallelBuilding = true; 25 24 nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook ]; 26 25 buildInputs = [ 27 26 SDL2
-1
pkgs/misc/emulators/mgba/default.nix
··· 24 24 sha256 = "0nqj4bnn5c2z1bq4bnbw1wznc0wpmq4sy3w8pipd6n6620b9m4qq"; 25 25 }; 26 26 27 - enableParallelBuilding = true; 28 27 nativeBuildInputs = [ wrapQtAppsHook pkgconfig cmake ]; 29 28 30 29 buildInputs = [
-2
pkgs/misc/emulators/retroarch/cores.nix
··· 41 41 --add-flags "-L $COREDIR/${d2u core}_libretro${stdenv.hostPlatform.extensions.sharedLibrary} $@" 42 42 ''; 43 43 44 - enableParallelBuilding = true; 45 - 46 44 passthru = { 47 45 inherit (a) core; 48 46 libretroCore = "/lib/retroarch/cores";
-2
pkgs/misc/emulators/rpcs3/default.nix
··· 44 44 ++ lib.optional alsaSupport alsaLib 45 45 ++ lib.optional waylandSupport wayland; 46 46 47 - enableParallelBuilding = true; 48 - 49 47 meta = with lib; { 50 48 description = "PS3 emulator/debugger"; 51 49 homepage = "https://rpcs3.net/";
-2
pkgs/misc/lightspark/default.nix
··· 25 25 pango lzma nasm llvm glibmm 26 26 ]; 27 27 28 - enableParallelBuilding = true; 29 - 30 28 meta = with stdenv.lib; { 31 29 description = "Open source Flash Player implementation"; 32 30 homepage = "https://lightspark.github.io/";
-2
pkgs/os-specific/linux/bpftrace/default.nix
··· 15 15 sha256 = "0y4qgm2cpccrsm20rnh92hqplddqsc5q5zhw9nqn2igm3h9i0z7h"; 16 16 }; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 buildInputs = with llvmPackages; 21 19 [ llvm clang-unwrapped 22 20 kernel elfutils libelf bcc
-2
pkgs/os-specific/linux/roccat-tools/default.nix
··· 24 24 nativeBuildInputs = [ cmake pkgconfig gettext ]; 25 25 buildInputs = [ dbus dbus-glib libgaminggear libgudev lua ]; 26 26 27 - enableParallelBuilding = true; 28 - 29 27 cmakeFlags = [ 30 28 "-DUDEVDIR=\${out}/lib/udev/rules.d" 31 29 "-DCMAKE_MODULE_PATH=${libgaminggear.dev}/lib/cmake"
-2
pkgs/servers/domoticz/default.nix
··· 41 41 cp -r ${minizip-src}/* $sourceRoot/extern/minizip 42 42 ''; 43 43 44 - enableParallelBuilding = true; 45 - 46 44 buildInputs = [ 47 45 openssl 48 46 python3
+1 -2
pkgs/servers/foundationdb/cmake.nix
··· 36 36 ++ lib.optional useClang [ llvmPackages.lld ]; 37 37 38 38 separateDebugInfo = true; 39 - enableParallelBuilding = true; 40 39 dontFixCmake = true; 41 40 42 41 cmakeFlags = ··· 66 65 # fix up the use of the very weird and custom 'fdb_install' command by just 67 66 # replacing it with cmake's ordinary version. 68 67 postPatch = '' 69 - for x in bindings/c/CMakeLists.txt fdbserver/CMakeLists.txt fdbmonitor/CMakeLists.txt fdbbackup/CMakeLists.txt fdbcli/CMakeLists.txt; do 68 + for x in bindings/c/CMakeLists.txt fdbserver/CMakeLists.txt fdbmonitor/CMakeLists.txt fdbbackup/CMakeLists.txt fdbcli/CMakeLists.txt; do 70 69 substituteInPlace $x --replace 'fdb_install' 'install' 71 70 done 72 71 '';
-1
pkgs/servers/http/h2o/default.nix
··· 16 16 17 17 outputs = [ "out" "man" "dev" "lib" ]; 18 18 19 - enableParallelBuilding = true; 20 19 nativeBuildInputs = [ pkgconfig cmake ninja ]; 21 20 buildInputs = [ openssl libuv zlib ]; 22 21
-2
pkgs/servers/nosql/arangodb/default.nix
··· 36 36 "-DASM_OPTIMIZATIONS=${if stdenv.hostPlatform.sse4_2Support then "ON" else "OFF"}" 37 37 ]; 38 38 39 - enableParallelBuilding = true; 40 - 41 39 meta = with lib; { 42 40 homepage = "https://www.arangodb.com"; 43 41 description = "A native multi-model database with flexible data models for documents, graphs, and key-values";
-2
pkgs/servers/sql/mariadb/connector-c/default.nix
··· 42 42 propagatedBuildInputs = [ curl openssl zlib ]; 43 43 buildInputs = [ libiconv ]; 44 44 45 - enableParallelBuilding = true; 46 - 47 45 postInstall = '' 48 46 moveToOutput bin/mariadb_config "$dev" 49 47 '';
-2
pkgs/servers/sql/mariadb/default.nix
··· 100 100 rm -r $out/share/aclocal 101 101 ''; 102 102 103 - enableParallelBuilding = true; 104 - 105 103 passthru.mysqlVersion = "5.7"; 106 104 107 105 passthru.tests = {
-1
pkgs/servers/tmate-ssh-server/default.nix
··· 16 16 17 17 buildInputs = [ libtool zlib openssl libevent ncurses ruby msgpack libssh ]; 18 18 nativeBuildInputs = [ autoreconfHook cmake pkgconfig ]; 19 - enableParallelBuilding = true; 20 19 21 20 meta = with stdenv.lib; { 22 21 homepage = "https://tmate.io/";
-1
pkgs/servers/ttyd/default.nix
··· 17 17 18 18 nativeBuildInputs = [ pkgconfig cmake xxd ]; 19 19 buildInputs = [ openssl libwebsockets json_c libuv zlib ]; 20 - enableParallelBuilding = true; 21 20 22 21 outputs = [ "out" "man" ]; 23 22
+2 -4
pkgs/servers/tvheadend/default.nix
··· 35 35 36 36 nativeBuildInputs = [ cmake makeWrapper pkgconfig ]; 37 37 38 - enableParallelBuilding = true; 39 - 40 38 NIX_CFLAGS_COMPILE = [ "-Wno-error=format-truncation" "-Wno-error=stringop-truncation" ]; 41 39 42 40 # disable dvbscan, as having it enabled causes a network download which ··· 73 71 meta = with stdenv.lib; { 74 72 description = "TV streaming server"; 75 73 longDescription = '' 76 - Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android 74 + Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android 77 75 supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, IPTV, SAT>IP and HDHomeRun as input sources. 78 - Tvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT>IP streaming.''; 76 + Tvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT>IP streaming.''; 79 77 homepage = "https://tvheadend.org"; 80 78 license = licenses.gpl3; 81 79 platforms = platforms.unix;
-1
pkgs/servers/xmpp/biboumi/default.nix
··· 27 27 cp $louiz_catch/single_include/catch.hpp tests/ 28 28 ''; 29 29 30 - enableParallelBuilding = true; 31 30 doCheck = true; 32 31 33 32 meta = with stdenv.lib; {
-2
pkgs/servers/zoneminder/default.nix
··· 159 159 160 160 nativeBuildInputs = [ cmake makeWrapper pkgconfig ]; 161 161 162 - enableParallelBuilding = true; 163 - 164 162 cmakeFlags = [ 165 163 "-DWITH_SYSTEMD=ON" 166 164 "-DZM_LOGDIR=/var/log/${dirName}"
-2
pkgs/shells/fish/default.nix
··· 196 196 tee -a $out/share/fish/__fish_build_paths.fish < ${fishPreInitHooks} 197 197 ''; 198 198 199 - enableParallelBuilding = true; 200 - 201 199 meta = with lib; { 202 200 description = "Smart and user-friendly command line shell"; 203 201 homepage = "http://fishshell.com/";
-2
pkgs/tools/X11/nx-libs/default.nix
··· 23 23 NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ]; 24 24 NIX_LDFLAGS = [ "-ltirpc" ]; 25 25 26 - enableParallelBuilding = true; 27 - 28 26 postPatch = '' 29 27 patchShebangs . 30 28 find . -type f -name Makefile -exec sed -i 's|^\(SHELL:=\)/bin/bash$|\1${stdenv.shell}|g' {} \;
-2
pkgs/tools/X11/virtualgl/lib.nix
··· 31 31 --replace "LD_PRELOAD=libgefaker" "LD_PRELOAD=$out/lib/libgefaker" 32 32 ''; 33 33 34 - enableParallelBuilding = true; 35 - 36 34 meta = with stdenv.lib; { 37 35 homepage = "http://www.virtualgl.org/"; 38 36 description = "X11 GL rendering in a remote computer with full 3D hw acceleration";
-2
pkgs/tools/admin/tigervnc/default.nix
··· 93 93 94 94 propagatedBuildInputs = xorg.xorgserver.propagatedBuildInputs; 95 95 96 - enableParallelBuilding = true; 97 - 98 96 meta = { 99 97 homepage = "https://tigervnc.org/"; 100 98 license = stdenv.lib.licenses.gpl2Plus;
-2
pkgs/tools/archivers/innoextract/default.nix
··· 14 14 15 15 nativeBuildInputs = [ cmake makeWrapper ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 # we need unar to for multi-archive extraction 20 18 postFixup = stdenv.lib.optionalString withGog '' 21 19 wrapProgram $out/bin/innoextract \
-2
pkgs/tools/backup/httrack/qt.nix
··· 14 14 15 15 nativeBuildInputs = [ cmake makeWrapper pkgconfig ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 prePatch = '' 20 18 substituteInPlace cmake/HTTRAQTFindHttrack.cmake \ 21 19 --replace /usr/include/httrack/ ${httrack}/include/httrack/
-2
pkgs/tools/compression/zopfli/default.nix
··· 22 22 cp $src/src/zopfli/*.h $dev/include/ 23 23 ''; 24 24 25 - enableParallelBuilding = true; 26 - 27 25 meta = with stdenv.lib; { 28 26 inherit (src.meta) homepage; 29 27 description = "Very good, but slow, deflate or zlib compression";
-2
pkgs/tools/filesystems/ceph/default.nix
··· 195 195 test -f $out/bin/ceph-volume 196 196 ''; 197 197 198 - enableParallelBuilding = true; 199 - 200 198 outputs = [ "out" "lib" "dev" "doc" "man" ]; 201 199 202 200 doCheck = false; # uses pip to install things from the internet
-2
pkgs/tools/filesystems/cryfs/default.nix
··· 48 48 49 49 buildInputs = [ boost cryptopp curl fuse openssl ]; 50 50 51 - enableParallelBuilding = true; 52 - 53 51 cmakeFlags = [ 54 52 "-DCRYFS_UPDATE_CHECKS:BOOL=FALSE" 55 53 "-DBoost_USE_STATIC_LIBS:BOOL=FALSE" # this option is case sensitive
-2
pkgs/tools/filesystems/encfs/default.nix
··· 23 23 "-DINSTALL_LIBENCFS=ON" 24 24 ]; 25 25 26 - enableParallelBuilding = true; 27 - 28 26 meta = with stdenv.lib; { 29 27 description = "An encrypted filesystem in user-space via FUSE"; 30 28 homepage = "https://vgough.github.io/encfs";
-2
pkgs/tools/filesystems/securefs/default.nix
··· 17 17 nativeBuildInputs = [ cmake ]; 18 18 buildInputs = [ fuse ]; 19 19 20 - enableParallelBuilding = true; 21 - 22 20 meta = with stdenv.lib; { 23 21 inherit (src.meta) homepage; 24 22 description = "Transparent encryption filesystem";
-1
pkgs/tools/graphics/appleseed/default.nix
··· 47 47 "-DUSE_SSE=ON" 48 48 "-DUSE_SSE42=ON" 49 49 ]; 50 - enableParallelBuilding = true; 51 50 52 51 meta = with stdenv.lib; { 53 52 description = "Open source, physically-based global illumination rendering engine";
-2
pkgs/tools/graphics/vulkan-tools-lunarg/default.nix
··· 62 62 done 63 63 ''; 64 64 65 - enableParallelBuilding = true; 66 - 67 65 # Same as vulkan-validation-layers 68 66 libraryPath = lib.strings.makeLibraryPath [ vulkan-loader ]; 69 67 dontPatchELF = true;
-1
pkgs/tools/graphics/vulkan-tools/default.nix
··· 15 15 16 16 nativeBuildInputs = [ cmake pkgconfig ]; 17 17 buildInputs = [ python3 vulkan-headers vulkan-loader xlibsWrapper libxcb libXrandr wayland ]; 18 - enableParallelBuilding = true; 19 18 20 19 libraryPath = lib.strings.makeLibraryPath [ vulkan-loader ]; 21 20
-2
pkgs/tools/inputmethods/fcitx-engines/fcitx-rime/default.nix
··· 22 22 --replace ${fcitx} $out 23 23 ''; 24 24 25 - enableParallelBuilding = true; 26 - 27 25 meta = with stdenv.lib; { 28 26 isFcitxEngine = true; 29 27 homepage = "https://github.com/fcitx/fcitx-rime";
-2
pkgs/tools/misc/flameshot/default.nix
··· 14 14 nativeBuildInputs = [ cmake qttools qtsvg ]; 15 15 buildInputs = [ qtbase ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 meta = with lib; { 20 18 description = "Powerful yet simple to use screenshot software"; 21 19 homepage = "https://github.com/flameshot-org/flameshot";
-2
pkgs/tools/misc/fltrdr/default.nix
··· 19 19 20 20 buildInputs = [ icu openssl ]; 21 21 22 - enableParallelBuilding = true; 23 - 24 22 meta = with stdenv.lib; { 25 23 homepage = "https://octobanana.com/software/fltrdr"; 26 24 description = "A TUI text reader for the terminal";
-2
pkgs/tools/misc/heimdall/default.nix
··· 39 39 install -m644 ../OSX/README.txt $out/share/doc/heimdall/README.osx 40 40 ''; 41 41 42 - enableParallelBuilding = true; 43 - 44 42 meta = with stdenv.lib; { 45 43 homepage = "http://www.glassechidna.com.au/products/heimdall/"; 46 44 description = "A cross-platform tool suite to flash firmware onto Samsung Galaxy S devices";
-2
pkgs/tools/misc/partition-manager/default.nix
··· 15 15 sha256 = "0jhggb4xksb0k0mj752n6pz0xmccnbzlp984xydqbz3hkigra1si"; 16 16 }; 17 17 18 - enableParallelBuilding = true; 19 - 20 18 nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook wrapQtAppsHook ]; 21 19 22 20 # refer to kpmcore for the use of eject
-1
pkgs/tools/misc/tmate/default.nix
··· 16 16 17 17 buildInputs = [ libtool zlib openssl libevent ncurses ruby msgpack libssh ]; 18 18 nativeBuildInputs = [ autoreconfHook cmake pkgconfig ]; 19 - enableParallelBuilding = true; 20 19 21 20 meta = with stdenv.lib; { 22 21 homepage = "https://tmate.io/";
-2
pkgs/tools/networking/pcapc/default.nix
··· 16 16 17 17 makeFlags = [ "PREFIX=$(out)" ]; 18 18 19 - enableParallelBuilding = true; 20 - 21 19 doCheck = false; 22 20 23 21 meta = with stdenv.lib; {
-2
pkgs/tools/networking/pingtcp/default.nix
··· 14 14 15 15 nativeBuildInputs = [ cmake ]; 16 16 17 - enableParallelBuilding = true; 18 - 19 17 doCheck = false; 20 18 21 19 postInstall = ''
-2
pkgs/tools/package-management/apt/default.nix
··· 42 42 "-DUSE_NLS=${if withNLS then "ON" else "OFF"}" 43 43 ]; 44 44 45 - enableParallelBuilding = true; 46 - 47 45 meta = with lib; { 48 46 description = "Command-line package management tools used on Debian-based systems"; 49 47 homepage = "https://salsa.debian.org/apt-team/apt";
-2
pkgs/tools/package-management/packagekit/qt.nix
··· 16 16 17 17 nativeBuildInputs = [ cmake pkgconfig qttools ]; 18 18 19 - enableParallelBuilding = true; 20 - 21 19 meta = packagekit.meta // { 22 20 description = "System to facilitate installing and updating packages - Qt"; 23 21 };
-2
pkgs/tools/security/haka/default.nix
··· 24 24 nativeBuildInputs = [ cmake ]; 25 25 buildInputs = [ swig wireshark check rsync libpcap gawk libedit pcre ]; 26 26 27 - enableParallelBuilding = true; 28 - 29 27 meta = { 30 28 description = "A collection of tools that allows capturing TCP/IP packets and filtering them based on Lua policy files"; 31 29 homepage = "http://www.haka-security.org/";
-2
pkgs/tools/security/lastpass-cli/default.nix
··· 18 18 bash-completion curl openssl libxml2 libxslt 19 19 ]; 20 20 21 - enableParallelBuilding = true; 22 - 23 21 installTargets = [ "install" "install-doc" ]; 24 22 25 23 postInstall = ''
-2
pkgs/tools/security/nmap/qt.nix
··· 25 25 26 26 buildInputs = [ qtbase qtscript qtwebengine ]; 27 27 28 - enableParallelBuilding = true; 29 - 30 28 postPatch = '' 31 29 substituteInPlace src/platform/digmanager.cpp \ 32 30 --replace '"dig"' '"${dnsutils}/bin/dig"'
-2
pkgs/tools/system/facter/default.nix
··· 24 24 nativeBuildInputs = [ cmake ]; 25 25 buildInputs = [ boost cpp-hocon curl leatherman libwhereami libyamlcpp openssl ruby util-linux ]; 26 26 27 - enableParallelBuilding = true; 28 - 29 27 meta = with stdenv.lib; { 30 28 homepage = "https://github.com/puppetlabs/facter"; 31 29 description = "A system inventory tool";