depot/pkgs/development/ocaml-modules/sel/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

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 ];
};
}