lol
0
fork

Configure Feed

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

at 24.11-pre 14 lines 551 B view raw
1{ callPackage, fetchurl, fetchpatch, ... } @ args: 2 3callPackage ./generic.nix (args // rec { 4 version = "1.84.0"; 5 6 src = fetchurl { 7 urls = [ 8 "mirror://sourceforge/boost/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2" 9 "https://boostorg.jfrog.io/artifactory/main/release/${version}/source/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2" 10 ]; 11 # SHA256 from http://www.boost.org/users/history/version_1_84_0.html 12 sha256 = "cc4b893acf645c9d4b698e9a0f08ca8846aa5d6c68275c14c3e7949c24109454"; 13 }; 14})