Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocamlPackages.ppxfind: init at 1.2

authored by

Vincent Laporte and committed by
Vincent Laporte
d7f08cd9 ffe4a9a8

+23
+21
pkgs/development/ocaml-modules/ppxfind/default.nix
···
··· 1 + { lib, buildDunePackage, fetchurl, ocaml-migrate-parsetree }: 2 + 3 + buildDunePackage rec { 4 + pname = "ppxfind"; 5 + version = "1.2"; 6 + src = fetchurl { 7 + url = "https://github.com/diml/ppxfind/releases/download/${version}/ppxfind-${version}.tbz"; 8 + sha256 = "1687jbgii5w5dvvid3ri2cx006ysv0rrspn8dz8x7ma8615whz2h"; 9 + }; 10 + 11 + minimumOCamlVersion = "4.03"; 12 + 13 + buildInputs = [ ocaml-migrate-parsetree ]; 14 + 15 + meta = { 16 + homepage = "https://github.com/diml/ppxfind"; 17 + description = "ocamlfind ppx tool"; 18 + license = lib.licenses.bsd3; 19 + maintainers = [ lib.maintainers.vbgl ]; 20 + }; 21 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 580 piqi = callPackage ../development/ocaml-modules/piqi { }; 581 piqi-ocaml = callPackage ../development/ocaml-modules/piqi-ocaml { }; 582 583 ppxlib = callPackage ../development/ocaml-modules/ppxlib { }; 584 585 psmt2-frontend = callPackage ../development/ocaml-modules/psmt2-frontend { };
··· 580 piqi = callPackage ../development/ocaml-modules/piqi { }; 581 piqi-ocaml = callPackage ../development/ocaml-modules/piqi-ocaml { }; 582 583 + ppxfind = callPackage ../development/ocaml-modules/ppxfind { }; 584 + 585 ppxlib = callPackage ../development/ocaml-modules/ppxlib { }; 586 587 psmt2-frontend = callPackage ../development/ocaml-modules/psmt2-frontend { };