nixpkgs/pkgs/development/ocaml-modules/ppx_derivers/default.nix
R. RyanTM 8d9e99992e ocamlPackages.ppx_derivers: 1.2 -> 1.2.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ocaml4.06.1-ppx_derivers/versions
2019-05-05 11:37:30 -07:00

23 lines
487 B
Nix

{ stdenv, fetchFromGitHub, buildDunePackage }:
buildDunePackage rec {
pname = "ppx_derivers";
version = "1.2.1";
minimumOCamlVersion = "4.02";
src = fetchFromGitHub {
owner = "diml";
repo = pname;
rev = version;
sha256 = "0yqvqw58hbx1a61wcpbnl9j30n495k23qmyy2xwczqs63mn2nkpn";
};
meta = {
description = "Shared [@@deriving] plugin registry";
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.vbgl ];
inherit (src.meta) homepage;
};
}