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

20 lines
472 B
Nix
Raw Normal View History

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