{ callPackage, fetchurl, ... }@args: callPackage ./generic.nix ( args // rec { version = "1.88.0"; src = fetchurl { urls = [ "mirror://sourceforge/boost/boost_${builtins.replaceStrings [ "." ] [ "_" ] version}.tar.bz2" "https://boostorg.jfrog.io/artifactory/main/release/${version}/source/boost_${ builtins.replaceStrings [ "." ] [ "_" ] version }.tar.bz2" ]; # SHA256 from http://www.boost.org/users/history/version_1_88_0.html sha256 = "46d9d2c06637b219270877c9e16155cbd015b6dc84349af064c088e9b5b12f7b"; }; } )