Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocamlPackages.domain-local-await: 1.0.0 → 1.0.1

https://github.com/ocaml-multicore/domain-local-await/releases/tag/1.0.1

authored by toastal and committed by Vincent Laporte ecbce334 758d35ef

+4 -3
+4 -3
pkgs/development/ocaml-modules/domain-local-await/default.nix
··· 2 2 , buildDunePackage 3 3 , fetchurl 4 4 , alcotest 5 + , domain_shims 5 6 , mdx 6 7 , thread-table 7 8 }: 8 9 9 10 buildDunePackage rec { 10 11 pname = "domain-local-await"; 11 - version = "1.0.0"; 12 + version = "1.0.1"; 12 13 13 14 minimalOCamlVersion = "5.0"; 14 - duneVersion = "3"; 15 15 16 16 src = fetchurl { 17 17 url = "https://github.com/ocaml-multicore/${pname}/releases/download/${version}/${pname}-${version}.tbz"; 18 - sha256 = "KijWg0iTSdqbwkXd5Kr3/94urDm8QFSY2lMmGjUuxGo="; 18 + hash = "sha256-KVIRPFPLB+KwVLLchs5yk5Ex2rggfI8xOa2yPmTN+m8="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ ··· 26 26 27 27 checkInputs = [ 28 28 alcotest 29 + domain_shims 29 30 mdx 30 31 ]; 31 32