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