File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed
development/libraries/boost Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ { callPackage , fetchurl , ... } @args :
2+
3+ callPackage ./generic.nix (
4+ args
5+ // rec {
6+ version = "1.89.0" ;
7+
8+ src = fetchurl {
9+ urls = [
10+ "mirror://sourceforge/boost/boost_${ builtins . replaceStrings [ "." ] [ "_" ] version } .tar.bz2"
11+ "https://boostorg.jfrog.io/artifactory/main/release/${ version } /source/boost_${
12+ builtins . replaceStrings [ "." ] [ "_" ] version
13+ } .tar.bz2"
14+ ] ;
15+ # SHA256 from http://www.boost.org/users/history/version_1_89_0.html
16+ sha256 = "85a33fa22621b4f314f8e85e1a5e2a9363d22e4f4992925d4bb3bc631b5a0c7a" ;
17+ } ;
18+ }
19+ )
Original file line number Diff line number Diff line change 3030 boost186 = makeBoost ./1.86.nix ;
3131 boost187 = makeBoost ./1.87.nix ;
3232 boost188 = makeBoost ./1.88.nix ;
33+ boost189 = makeBoost ./1.89.nix ;
3334}
Original file line number Diff line number Diff line change @@ -7394,6 +7394,7 @@ with pkgs;
73947394 boost186
73957395 boost187
73967396 boost188
7397+ boost189
73977398 ;
73987399
73997400 boost = boost187 ;
You can’t perform that action at this time.
0 commit comments