Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkgs/applications/blockchains/haven-cli/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ lib, stdenv, fetchFromGitHub, fetchpatch
, cmake, pkg-config
, boost, miniupnpc, openssl, unbound
, boost179, miniupnpc, openssl, unbound
, zeromq, pcsclite, readline, libsodium, hidapi
, randomx, rapidjson
, easyloggingpp
Expand Down Expand Up @@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkg-config ];

buildInputs = [
boost miniupnpc openssl unbound
boost179 miniupnpc openssl unbound
zeromq pcsclite readline
libsodium hidapi randomx rapidjson
protobuf
Expand Down
4 changes: 2 additions & 2 deletions pkgs/applications/blockchains/sumokoin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
, fetchFromGitHub
, cmake
, pkg-config
, boost
, boost179
, openssl
, libsodium
, libunwind
Expand Down Expand Up @@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
];

buildInputs = [
boost
boost179
openssl
libsodium
libunwind
Expand Down
4 changes: 2 additions & 2 deletions pkgs/applications/science/biology/octopus/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{lib, stdenv, fetchurl, fetchFromGitHub, cmake, boost, gmp, htslib, zlib, xz, pkg-config}:
{lib, stdenv, fetchurl, fetchFromGitHub, cmake, boost179, gmp, htslib, zlib, xz, pkg-config}:

stdenv.mkDerivation rec {
pname = "octopus";
Expand All @@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};

nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ boost gmp htslib zlib xz ];
buildInputs = [ boost179 gmp htslib zlib xz ];

patches = [ (fetchurl {
url = "https://github.com/luntergroup/octopus/commit/17a597d192bcd5192689bf38c5836a98b824867a.patch";
Expand Down
4 changes: 2 additions & 2 deletions pkgs/applications/video/aegisub/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
, config
, stdenv
, fetchFromGitHub
, boost
, boost179
, cmake
, expat
, harfbuzz
Expand Down Expand Up @@ -80,7 +80,7 @@ stdenv.mkDerivation rec {
];

buildInputs = [
boost
boost179
expat
ffmpeg
ffms
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/libraries/cctag/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
, fetchFromGitHub

, cmake
, boost
, boost179
, eigen
, opencv
, tbb
Expand Down Expand Up @@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
];

buildInputs = [
boost
boost179
eigen
opencv
];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/libraries/miopen/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
, miopengemm
, composable_kernel
, half
, boost
, boost179
, sqlite
, bzip2
, nlohmann_json
Expand Down Expand Up @@ -86,7 +86,7 @@ in stdenv.mkDerivation (finalAttrs: {
miopengemm
composable_kernel
half
boost
boost179
sqlite
bzip2
nlohmann_json
Expand Down
8 changes: 4 additions & 4 deletions pkgs/development/libraries/ndn-cxx/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
, python3
, python3Packages
, wafHook
, boost
, boost179
, openssl
, sqlite
}:
Expand All @@ -24,12 +24,12 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ doxygen pkg-config python3 python3Packages.sphinx wafHook ];

buildInputs = [ boost openssl sqlite ];
buildInputs = [ boost179 openssl sqlite ];

wafConfigureFlags = [
"--with-openssl=${openssl.dev}"
"--boost-includes=${boost.dev}/include"
"--boost-libs=${boost.out}/lib"
"--boost-includes=${boost179.dev}/include"
"--boost-libs=${boost179.out}/lib"
"--with-tests"
];

Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/libraries/simgear/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchurl, plib, freeglut, xorgproto, libX11, libXext, libXi
, libICE, libSM, libXt, libXmu, libGLU, libGL, boost, zlib, libjpeg, freealut
, libICE, libSM, libXt, libXmu, libGLU, libGL, boost179, zlib, libjpeg, freealut
, openscenegraph, openal, expat, cmake, apr, xz
, curl
}:
Expand All @@ -18,7 +18,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ cmake ];
buildInputs = [ plib freeglut xorgproto libX11 libXext libXi
libICE libSM libXt libXmu libGLU libGL boost zlib libjpeg freealut
libICE libSM libXt libXmu libGLU libGL boost179 zlib libjpeg freealut
openscenegraph openal expat apr curl xz ];

meta = with lib; {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/tools/profiling/heaptrack/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
lib, mkDerivation, fetchFromGitHub, cmake, extra-cmake-modules,
zlib, boost, libunwind, elfutils, sparsehash, zstd,
zlib, boost179, libunwind, elfutils, sparsehash, zstd,
qtbase, kio, kitemmodels, threadweaver, kconfigwidgets, kcoreaddons, kdiagram
}:

Expand All @@ -17,7 +17,7 @@ mkDerivation rec {

nativeBuildInputs = [ cmake extra-cmake-modules ];
buildInputs = [
zlib boost libunwind elfutils sparsehash zstd
zlib boost179 libunwind elfutils sparsehash zstd
qtbase kio kitemmodels threadweaver kconfigwidgets kcoreaddons kdiagram
];

Expand Down
4 changes: 2 additions & 2 deletions pkgs/games/opendungeons/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, ogre, cegui, boost, sfml, openal, cmake, ois, pkg-config }:
{ lib, stdenv, fetchFromGitHub, ogre, cegui, boost179, sfml, openal, cmake, ois, pkg-config }:

stdenv.mkDerivation rec {
pname = "opendungeons";
Expand All @@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
'';

nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ ogre cegui boost sfml openal ois ];
buildInputs = [ ogre cegui boost179 sfml openal ois ];

meta = with lib; {
description = "An open source, real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius";
Expand Down
4 changes: 2 additions & 2 deletions pkgs/misc/screensavers/electricsheep/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
, pkg-config
, flam3
, libgtop
, boost
, boost179
, tinyxml
, freeglut
, libGLU
Expand Down Expand Up @@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
xorg.libXrender
flam3
libgtop
boost
boost179
tinyxml
freeglut
libGLU
Expand Down
4 changes: 2 additions & 2 deletions pkgs/servers/osrm-backend/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{lib, stdenv, fetchFromGitHub, cmake, pkg-config, bzip2, libxml2, libzip, boost, lua, luabind, tbb, expat}:
{lib, stdenv, fetchFromGitHub, cmake, pkg-config, bzip2, libxml2, libzip, boost179, lua, luabind, tbb, expat}:

stdenv.mkDerivation rec {
pname = "osrm-backend";
Expand All @@ -13,7 +13,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ cmake pkg-config ];

buildInputs = [ bzip2 libxml2 libzip boost lua luabind tbb expat ];
buildInputs = [ bzip2 libxml2 libzip boost179 lua luabind tbb expat ];

patches = [ ./darwin.patch ];

Expand Down