Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
566 B
Nix
Raw Permalink Normal View History

2025-01-20 09:08:25 +01:00
{
lib,
fetchFromGitHub,
buildDunePackage,
}:
buildDunePackage rec {
pname = "mem_usage";
version = "0.1.2";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-mem_usage";
rev = "v${version}";
2025-01-20 09:08:25 +01:00
hash = "sha256-5tQNsqbiU9oJvKHUjeTo/ST4A0Axc95gdJISLaa9VRM=";
};
minimalOCamlVersion = "4.07";
doCheck = true;
meta = {
license = lib.licenses.mit;
homepage = "https://www.liquidsoap.info/ocaml-mem_usage/";
description = "Cross-platform memory usage information";
maintainers = [ lib.maintainers.vbgl ];
};
}