mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
ocamlPackages.ppxfind: init at 1.2
This commit is contained in:
parent
ffe4a9a863
commit
d7f08cd90f
21
pkgs/development/ocaml-modules/ppxfind/default.nix
Normal file
21
pkgs/development/ocaml-modules/ppxfind/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ lib, buildDunePackage, fetchurl, ocaml-migrate-parsetree }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "ppxfind";
|
||||
version = "1.2";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/diml/ppxfind/releases/download/${version}/ppxfind-${version}.tbz";
|
||||
sha256 = "1687jbgii5w5dvvid3ri2cx006ysv0rrspn8dz8x7ma8615whz2h";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -580,6 +580,8 @@ let
|
||||
piqi = callPackage ../development/ocaml-modules/piqi { };
|
||||
piqi-ocaml = callPackage ../development/ocaml-modules/piqi-ocaml { };
|
||||
|
||||
ppxfind = callPackage ../development/ocaml-modules/ppxfind { };
|
||||
|
||||
ppxlib = callPackage ../development/ocaml-modules/ppxlib { };
|
||||
|
||||
psmt2-frontend = callPackage ../development/ocaml-modules/psmt2-frontend { };
|
||||
|
Loading…
Reference in New Issue
Block a user