mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 07:04:28 +00:00
d4dddd9b68
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-ppxfind/versions
22 lines
561 B
Nix
22 lines
561 B
Nix
{ lib, buildDunePackage, fetchurl, ocaml-migrate-parsetree }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ppxfind";
|
|
version = "1.3";
|
|
src = fetchurl {
|
|
url = "https://github.com/diml/ppxfind/releases/download/${version}/ppxfind-${version}.tbz";
|
|
sha256 = "1r4jp0516378js62ss50a9s8ql2pm8lfdd3mnk214hp7s0kb17fl";
|
|
};
|
|
|
|
minimumOCamlVersion = "4.03";
|
|
|
|
buildInputs = [ ocaml-migrate-parsetree ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/diml/ppxfind";
|
|
description = "ocamlfind ppx tool";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|