ocamlPackages.sel init at 0.4.0 (#247479)
This commit is contained in:
parent
6039decbd1
commit
c1322a76a2
2 changed files with 30 additions and 0 deletions
28
pkgs/development/ocaml-modules/sel/default.nix
Normal file
28
pkgs/development/ocaml-modules/sel/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ 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 = "A simple event library";
|
||||
homepage = "https://github.com/gares/sel/";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
}
|
|
@ -1541,6 +1541,8 @@ let
|
|||
|
||||
sedlex = callPackage ../development/ocaml-modules/sedlex { };
|
||||
|
||||
sel = callPackage ../development/ocaml-modules/sel {};
|
||||
|
||||
semaphore-compat = callPackage ../development/ocaml-modules/semaphore-compat { };
|
||||
|
||||
semver = callPackage ../development/ocaml-modules/semver { };
|
||||
|
|
Loading…
Reference in a new issue