nixpkgs/pkgs/development/ocaml-modules/dune-site/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
472 B
Nix
Raw Normal View History

2021-10-27 12:10:44 +00:00
{ 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;
2021-11-03 00:38:27 +00:00
maintainers = with lib.maintainers; [ ];
2021-10-27 12:10:44 +00:00
license = licenses.mit;
};
}