mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
32 lines
630 B
Nix
32 lines
630 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitHub,
|
|
stdcompat,
|
|
ppxlib,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "ppx_show";
|
|
version = "0.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thierry-martinez";
|
|
repo = "ppx_show";
|
|
rev = "v${finalAttrs.version}";
|
|
sha256 = "sha256-YwWAdOtb0zg2hqNkGRiigz/Pci8Jy/QD+WyUEohEsns=";
|
|
};
|
|
|
|
buildInputs = [
|
|
stdcompat
|
|
ppxlib
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/thierry-martinez/ppx_show";
|
|
description = "OCaml PPX deriver for deriving show based on ppxlib";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ niols ];
|
|
};
|
|
})
|