summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/ppx_derivers/default.nix
blob: a66875c4096a6c5b2571140cc68d8b51dc897727 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  lib,
  fetchFromGitHub,
  buildDunePackage,
}:

buildDunePackage (finalAttrs: {
  pname = "ppx_derivers";
  version = "1.2.1";

  minimalOCamlVersion = "4.02";

  src = fetchFromGitHub {
    owner = "diml";
    repo = "ppx_derivers";
    rev = finalAttrs.version;
    sha256 = "0yqvqw58hbx1a61wcpbnl9j30n495k23qmyy2xwczqs63mn2nkpn";
  };

  meta = {
    description = "Shared [@@deriving] plugin registry";
    license = lib.licenses.bsd3;
    maintainers = [ lib.maintainers.vbgl ];
    inherit (finalAttrs.src.meta) homepage;
  };
})