Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 14 lines 551 B view raw
1{ callPackage, fetchurl, fetchpatch, ... } @ args: 2 3callPackage ./generic.nix (args // rec { 4 version = "1.82.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_82_0.html 12 sha256 = "a6e1ab9b0860e6a2881dd7b21fe9f737a095e5f33a3a874afc6a345228597ee6"; 13 }; 14})