Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
477 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
dune_3,
csexp,
}:
buildDunePackage {
pname = "dune-configurator";
inherit (dune_3) src version patches;
# This fixes finding csexp
postPatch = ''
rm -rf vendor/pp vendor/csexp
'';
minimalOCamlVersion = "4.05";
dontAddPrefix = true;
propagatedBuildInputs = [ csexp ];
meta = with lib; {
description = "Helper library for gathering system configuration";
maintainers = [ ];
license = licenses.mit;
};
}