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

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

  duneVersion = "3";

  dontAddPrefix = true;

  propagatedBuildInputs = [ dune-private-libs ];

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