mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
32 lines
705 B
Nix
32 lines
705 B
Nix
{ lib
|
|
, fetchurl
|
|
, buildDunePackage
|
|
, lockfree
|
|
, mirage-clock-unix
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "domainslib";
|
|
version = "0.5.0";
|
|
|
|
duneVersion = "3";
|
|
minimalOCamlVersion = "5.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ocaml-multicore/domainslib/releases/download/v${version}/domainslib-${version}.tbz";
|
|
hash = "sha256-rty+9DUhTUEcN7BPl8G6Q/G/MJ6z/UAn0RPkG8hACwA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ lockfree ];
|
|
|
|
doCheck = true;
|
|
checkInputs = [ mirage-clock-unix ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/ocaml-multicore/domainslib";
|
|
description = "Nested-parallel programming";
|
|
license = lib.licenses.isc;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|