lol
0
fork

Configure Feed

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

boost173: init at 1.73.0

+42 -2
+16
pkgs/development/libraries/boost/1.73.nix
··· 1 + { stdenv, callPackage, fetchurl, fetchpatch, ... } @ args: 2 + 3 + callPackage ./generic.nix (args // rec { 4 + version = "1.73.0"; 5 + 6 + src = fetchurl { 7 + #url = "mirror://sourceforge/boost/boost_1_73_0.tar.bz2"; 8 + urls = [ 9 + "mirror://sourceforge/boost/boost_1_73_0.tar.bz2" 10 + "https://dl.bintray.com/boostorg/release/1.73.0/source/boost_1_73_0.tar.bz2" 11 + ]; 12 + # SHA256 from http://www.boost.org/users/history/version_1_73_0.html 13 + sha256 = "4eb3b8d442b426dc35346235c8733b5ae35ba431690e38c6a8263dce9fcbb402"; 14 + }; 15 + }) 16 +
+22
pkgs/development/libraries/boost/cmake-paths-173.patch
··· 1 + diff --git a/tools/boost_install/boost-install.jam b/tools/boost_install/boost-install.jam 2 + index 4238f921e..8fc1ea269 100644 3 + --- a/tools/boost_install/boost-install.jam 4 + +++ b/tools/boost_install/boost-install.jam 5 + @@ -649,7 +649,7 @@ rule generate-cmake-config- ( target : sources * : properties * ) 6 + "" 7 + "# Compute the include and library directories relative to this file." 8 + "" 9 + - "get_filename_component(_BOOST_CMAKEDIR \"${CMAKE_CURRENT_LIST_DIR}/../\" REALPATH)" 10 + + "get_filename_component(_BOOST_REAL_CMAKEDIR \"${CMAKE_CURRENT_LIST_DIR}/../\" REALPATH)" 11 + : true ; 12 + 13 + if [ path.is-rooted $(cmakedir) ] 14 + @@ -668,6 +668,8 @@ rule generate-cmake-config- ( target : sources * : properties * ) 15 + " unset(_BOOST_CMAKEDIR_ORIGINAL)" 16 + "endif()" 17 + "" 18 + + "# Assume that the installer actually did know where the libs were to be installed" 19 + + "get_filename_component(_BOOST_CMAKEDIR \"$(cmakedir-native)\" REALPATH)" 20 + : true ; 21 + } 22 +
+2 -1
pkgs/development/libraries/boost/generic.nix
··· 113 113 if version == "1.55.0" 114 114 then ./darwin-1.55-no-system-python.patch 115 115 else ./darwin-no-system-python.patch) 116 - ++ optional (versionAtLeast version "1.70") ./cmake-paths.patch; 116 + ++ optional (and (versionAtLeast version "1.70") (!versionAtLeast version "1.73")) ./cmake-paths.patch 117 + ++ optional (versionAtLeast version "1.73") ./cmake-paths-173.patch; 117 118 118 119 meta = { 119 120 homepage = "http://boost.org/";
+2 -1
pkgs/top-level/all-packages.nix
··· 11372 11372 boost170 = callPackage ../development/libraries/boost/1.70.nix { }; 11373 11373 boost171 = callPackage ../development/libraries/boost/1.71.nix { }; 11374 11374 boost172 = callPackage ../development/libraries/boost/1.72.nix { }; 11375 - boost17x = boost172; 11375 + boost173 = callPackage ../development/libraries/boost/1.73.nix { }; 11376 + boost17x = boost173; 11376 11377 boost = boost16x; 11377 11378 11378 11379 boost_process = callPackage ../development/libraries/boost-process { };