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

buildDunePackage rec {
  pname = "dune-site";
  inherit (dune_2) src version patches;

  useDune2 = true;

  dontAddPrefix = true;

  propagatedBuildInputs = [ dune-private-libs ];

  meta = with lib; {
    description = "A library for embedding location information inside executable and libraries";
    inherit (dune_2.meta) homepage;
    maintainers = with lib.maintainers; [ ];
    license = licenses.mit;
  };
}