evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / rusage / default.nix
blob891784ba6def0c534f014e5ea3beddfea897f05e
1 { lib, fetchurl, buildDunePackage }:
3 buildDunePackage rec {
4   pname = "rusage";
5   version = "1.0.0";
7   duneVersion = "3";
9   src = fetchurl {
10     url = "https://github.com/CraigFe/ocaml-rusage/releases/download/${version}/rusage-${version}.tbz";
11     hash = "sha256-OgYA2Fe1goqoaOS45Z6FBJNNYN/uq+KQoUwG8KSo6Fk=";
12   };
14   meta = {
15     description = "Bindings to the GETRUSAGE(2) syscall";
16     homepage = "https://github.com/CraigFe/ocaml-rusage";
17     license = lib.licenses.mit;
18     maintainers = [ lib.maintainers.vbgl ];
19   };