lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.brisk-reconciler: unstable-2020-12-02 → 1.0.0-α1

authored by

Vincent Laporte and committed by
Vincent Laporte
6680f22c 7e940a34

+12 -7
+12 -7
pkgs/development/ocaml-modules/brisk-reconciler/default.nix
··· 4 4 lib, 5 5 reason, 6 6 ppxlib, 7 + ocaml, 7 8 }: 8 9 10 + let 11 + version = 12 + if lib.versionAtLeast ocaml.version "5.3" then 13 + throw "brisk-reconciler is not available for OCaml ${ocaml.version}" 14 + else 15 + "1.0.0-alpha1"; 16 + in 17 + 9 18 buildDunePackage { 10 19 pname = "brisk-reconciler"; 11 - version = "unstable-2020-12-02"; 12 - 13 - duneVersion = "3"; 20 + inherit version; 14 21 15 22 src = fetchFromGitHub { 16 23 owner = "briskml"; 17 24 repo = "brisk-reconciler"; 18 - rev = "c9d5c4cf5dd17ff2da994de2c3b0f34c72778f70"; 19 - sha256 = "sha256-AAB4ZzBnwfwFXOAqX/sIT6imOl70F0YNMt96SWOOE9w="; 25 + tag = "v${version}"; 26 + hash = "sha256-Xj6GGsod3lnEEjrzPrlHwQAowq66uz8comlhpWK888k="; 20 27 }; 21 - 22 - nativeBuildInputs = [ reason ]; 23 28 24 29 buildInputs = [ 25 30 ppxlib