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.

24 lines
512 B
Nix
Raw Normal View History

{ lib, buildDunePackage, dune_3, dune-private-libs }:
2021-10-27 12:10:44 +00:00
buildDunePackage rec {
pname = "dune-site";
inherit (dune_3) src version;
2021-10-27 12:10:44 +00:00
duneVersion = "3";
2021-10-27 12:10:44 +00:00
dontAddPrefix = true;
propagatedBuildInputs = [ dune-private-libs ];
preBuild = ''
rm -r vendor/csexp
'';
2021-10-27 12:10:44 +00:00
meta = with lib; {
description = "A library for embedding location information inside executable and libraries";
inherit (dune_3.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;
};
}