2022-03-30 09:31:56 +00:00
|
|
|
{ lib, buildDunePackage, dune_3, dune-private-libs }:
|
2021-10-28 06:52:43 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "dune-site";
|
2022-03-30 09:31:56 +00:00
|
|
|
inherit (dune_3) src version;
|
2021-10-28 06:52:43 +00:00
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
duneVersion = "3";
|
2021-10-28 06:52:43 +00:00
|
|
|
|
|
|
|
dontAddPrefix = true;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ dune-private-libs ];
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
preBuild = ''
|
|
|
|
rm -r vendor/csexp
|
|
|
|
'';
|
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A library for embedding location information inside executable and libraries";
|
2022-03-30 09:31:56 +00:00
|
|
|
inherit (dune_3.meta) homepage;
|
2021-12-06 16:07:01 +00:00
|
|
|
maintainers = with lib.maintainers; [ ];
|
2021-10-28 06:52:43 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|