Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 fetchFromGitHub, 5 cpu, 6}: 7 8buildDunePackage rec { 9 pname = "parany"; 10 version = "14.0.1"; 11 12 minimalOCamlVersion = "4.08"; 13 14 src = fetchFromGitHub { 15 owner = "UnixJunkie"; 16 repo = pname; 17 rev = "v${version}"; 18 hash = "sha256-QR3Rq30iKhft+9tVCgJLOq9bwJe7bcay/kMTXjjCLjE="; 19 }; 20 21 propagatedBuildInputs = [ cpu ]; 22 23 meta = with lib; { 24 homepage = "https://github.com/UnixJunkie/parany"; 25 description = "Generalized map/reduce for multicore computing"; 26 maintainers = [ maintainers.bcdarwin ]; 27 license = licenses.lgpl2; 28 }; 29}