Compare commits

..

No commits in common. "main" and "0.1.0" have entirely different histories.
main ... 0.1.0

1 changed files with 9 additions and 3 deletions

View File

@ -1,7 +1,6 @@
{
lib,
mkShell,
gitSource,
buildDunePackage,
ppxlib,
@ -15,10 +14,17 @@
enableShell ? false
}:
buildDunePackage rec {
let
sourceRoot = ./.;
fs = lib.fileset;
sourceFiles = fs.difference
(fs.gitTracked sourceRoot)
(fs.fileFilter (file: file.hasExt "nix") sourceRoot);
sourceSet = fs.toSource { root = sourceRoot; fileset = sourceFiles; };
in buildDunePackage rec {
pname = "ppx_unicode";
version = "0.1.0";
src = gitSource { root = ./.; };
src = sourceSet;
minimalOCamlVersion = "5.1";
dontStrip = true;