about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/dune-private-libs/default.nix
blob: ecd8a0016e62dc3d6186889afac3c3abb1309f7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildDunePackage, dune_3, stdune }:

buildDunePackage rec {
  pname = "dune-private-libs";

  duneVersion = "3";

  inherit (dune_3) src version;

  minimalOCamlVersion = "4.08";

  dontAddPrefix = true;

  propagatedBuildInputs = [ stdune ];

  preBuild = ''
    rm -r vendor/csexp
  '';

  meta = with lib; {
    description = "Private libraries of Dune";
    maintainers = [ maintainers.marsam ];
    license = licenses.mit;
  };
}