mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
19 lines
347 B
Nix
19 lines
347 B
Nix
{ lib, buildDunePackage, dune_2 }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "dune-private-libs";
|
|
|
|
useDune2 = true;
|
|
|
|
inherit (dune_2) src version;
|
|
|
|
minimumOCamlVersion = "4.07";
|
|
|
|
dontAddPrefix = true;
|
|
|
|
meta = with lib; {
|
|
description = "Private libraries of Dune";
|
|
maintainers = [ maintainers.marsam ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|