Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 13 lines 446 B view raw
1{ callPackage, fetchurl, fetchpatch, ... } @ args: 2 3callPackage ./generic.nix (args // rec { 4 version = "1.70.0"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/boost/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2"; 8 # SHA256 from http://www.boost.org/users/history/version_1_70_0.html 9 sha256 = "430ae8354789de4fd19ee52f3b1f739e1fba576f0aded0897c3c2bc00fb38778"; 10 }; 11 12 patches = [ ./pthread-stack-min-fix.patch ]; 13})