mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 12:44:44 +00:00
26 lines
669 B
Nix
26 lines
669 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchurl,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "ocaml-syntax-shims";
|
|
version = "1.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/${finalAttrs.version}/ocaml-syntax-shims-${finalAttrs.version}.tbz";
|
|
hash = "sha256-ibLhk+kKDBaLbsXd9v7wkDNoG9y2ThGRPJdECici6Mg=";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/ocaml-ppx/ocaml-syntax-shims";
|
|
description = "Backport new syntax to older OCaml versions";
|
|
mainProgram = "ocaml-syntax-shims";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ sternenseemann ];
|
|
};
|
|
})
|