ocamlPackages.dune-configurator: revert last commit

This commit is contained in:
superherointj 2023-03-28 12:37:16 -03:00
parent 641e6cdb95
commit 4457607310

View file

@ -1,21 +1,17 @@
{ lib, buildDunePackage, dune_3, csexp }:
{ lib, buildDunePackage, dune_2, csexp, result }:
buildDunePackage rec {
pname = "dune-configurator";
inherit (dune_3) src version;
inherit (dune_2) src version patches;
# This fixes finding csexp
postPatch = ''
rm -rf ./vendor
'';
duneVersion = "2";
minimumOCamlVersion = "4.04";
minimalOCamlVersion = "4.03";
duneVersion = "3";
dontAddPrefix = true;
propagatedBuildInputs = [ csexp ];
propagatedBuildInputs = [ csexp result ];
meta = with lib; {
description = "Helper library for gathering system configuration";