depot/third_party/nixpkgs/pkgs/development/ocaml-modules/sel/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

28 lines
607 B
Nix

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