mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
ocamlPackages.dune-site: init 2.9.1
This commit is contained in:
parent
c535db45ce
commit
40bad15b21
19
pkgs/development/ocaml-modules/dune-site/default.nix
Normal file
19
pkgs/development/ocaml-modules/dune-site/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ 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; [ superherointj ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -321,6 +321,8 @@ let
|
||||
inherit (pkgs) opam git mercurial coreutils gnutar bzip2;
|
||||
};
|
||||
|
||||
dune-site = callPackage ../development/ocaml-modules/dune-site { };
|
||||
|
||||
duration = callPackage ../development/ocaml-modules/duration { };
|
||||
|
||||
earley = callPackage ../development/ocaml-modules/earley { };
|
||||
|
Loading…
Reference in New Issue
Block a user