oops dependencies
This commit is contained in:
parent
c8ae9c20d2
commit
7d1268e86d
|
@ -1,7 +1,7 @@
|
|||
(lang dune 3.15)
|
||||
|
||||
(name ppx_unicode)
|
||||
(version 0.0.1)
|
||||
(version 0.1.0)
|
||||
|
||||
(generate_opam_files true)
|
||||
|
||||
|
|
|
@ -23,16 +23,15 @@ let
|
|||
sourceSet = fs.toSource { root = sourceRoot; fileset = sourceFiles; };
|
||||
in buildDunePackage rec {
|
||||
pname = "ppx_unicode";
|
||||
version = "0.0.1";
|
||||
version = "0.1.0";
|
||||
src = sourceSet;
|
||||
|
||||
minimalOCamlVersion = "5.1";
|
||||
dontStrip = true;
|
||||
|
||||
buildInputs = [ ppxlib uunf ];
|
||||
propagatedBuildInputs = [ ];
|
||||
propagatedBuildInputs = [ ppxlib uunf ];
|
||||
|
||||
nativeBuildInputs = lib.optionals enableShell [
|
||||
nativeBuildInputs = [ ppxlib ] ++ lib.optionals enableShell [
|
||||
ocaml dune_3 odoc utop
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# This file is generated by dune, edit dune-project instead
|
||||
opam-version: "2.0"
|
||||
version: "0.0.1"
|
||||
version: "0.1.0"
|
||||
synopsis: "opinionated ppx for string literals"
|
||||
description:
|
||||
"ppx providing enforced and NFC normalized utf-8 on string literals, uchar literals, and bytes literals"
|
||||
maintainer: ["xenia <xenia@awoo.systems>"]
|
||||
authors: ["xenia <xenia@awoo.systems>"]
|
||||
license: "LGPL-2.0-or-later"
|
||||
license: "CC-BY-NC-SA-4.0"
|
||||
homepage: "https://git.lain.faith/haskal/ppx_unicode"
|
||||
bug-reports: "https://git.lain.faith/haskal/ppx_unicode"
|
||||
depends: [
|
||||
|
|
Loading…
Reference in New Issue