Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 27 lines 752 B view raw
1{ lib, stdenv, fetchFromGitHub, asio, boost, cmake, hwloc, gperftools, ninja 2, pkg-config, python3 }: 3 4stdenv.mkDerivation rec { 5 pname = "hpx"; 6 version = "1.8.1"; 7 8 src = fetchFromGitHub { 9 owner = "STEllAR-GROUP"; 10 repo = "hpx"; 11 rev = version; 12 sha256 = "sha256-YJ4wHaPE5E6ngUAYrQB1SkW4IoHW71tUDKKNANVA9Xw="; 13 }; 14 15 buildInputs = [ asio boost hwloc gperftools ]; 16 nativeBuildInputs = [ cmake pkg-config python3 ]; 17 18 strictDeps = true; 19 20 meta = { 21 description = "C++ standard library for concurrency and parallelism"; 22 homepage = "https://github.com/STEllAR-GROUP/hpx"; 23 license = lib.licenses.boost; 24 platforms = [ "x86_64-linux" ]; # lib.platforms.linux; 25 maintainers = with lib.maintainers; [ bobakker ]; 26 }; 27}