biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / timed / default.nix
blob988cb3f5487fe3d8a2169f8d08eadb1c8e586299
1 { lib
2 , fetchFromGitHub
3 , ocaml
4 , buildDunePackage
5 }:
7 buildDunePackage rec {
8   version = "1.1";
9   pname = "timed";
11   minimalOCamlVersion = "4.08";
13   src = fetchFromGitHub {
14     owner = "rlepigre";
15     repo = "ocaml-${pname}";
16     rev = version;
17     sha256 = "sha256-wUoI9j/j0IGYW2NfJHmyR2XEYfYejyoYLWnKsuWdFas=";
18   };
20   doCheck = true;
22   meta = with lib; {
23     description = "Timed references for imperative state";
24     homepage = "https://github.com/rlepigre/ocaml-timed";
25     license = licenses.mit;
26     maintainers = with maintainers; [ bcdarwin ];
27   };