Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 17 lines 600 B view raw
1{ callPackage, fetchurl, fetchpatch, ... } @ args: 2 3callPackage ./generic.nix (args // rec { 4 version = "1.72.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_72_0.html 12 sha256 = "59c9b274bc451cf91a9ba1dd2c7fdcaf5d60b1b3aa83f2c9fa143417cc660722"; 13 }; 14 15 patches = [ ./pthread-stack-min-fix.patch ]; 16}) 17