nixpkgs/pkgs/development/ocaml-modules/dune-private-libs/default.nix

16 lines
294 B
Nix
Raw Normal View History

{ lib, buildDunePackage, dune_2 }:
buildDunePackage rec {
pname = "dune-private-libs";
inherit (dune_2) src version;
dontAddPrefix = true;
meta = with lib; {
description = "Private libraries of Dune";
maintainers = [ maintainers.marsam ];
license = licenses.mit;
};
}