summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/dune-private-libs/default.nix
blob: 1c3503f11a151f9b5dcc39935ba1aaa290ccd5f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, buildDunePackage, dune_2 }:

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

  inherit (dune_2) src version;

  dontAddPrefix = true;

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