mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
20 lines
472 B
Nix
20 lines
472 B
Nix
{ 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;
|
|
maintainers = with lib.maintainers; [ ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|