2025-06-13 13:14:42 +00:00

35 lines
618 B
Nix

{
lib,
fetchurl,
ppxlib,
ppx_deriving,
buildDunePackage,
}:
buildDunePackage rec {
pname = "sel";
version = "0.7.0";
minimalOCamlVersion = "4.07";
src = fetchurl {
url = "https://github.com/gares/sel/releases/download/v${version}/sel-${version}.tbz";
hash = "sha256-1EJW9QogROoi0704v8/Wf8gIws/uEm05E0adv3eRDzI=";
};
buildInputs = [
ppxlib
];
propagatedBuildInputs = [
ppx_deriving
];
meta = {
description = "Simple event library";
homepage = "https://github.com/gares/sel/";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}