forked from mirrors/nixpkgs
ocamlPackages.lens: init at 1.2.3 (#77656)
This commit is contained in:
parent
2ac5fab264
commit
69aa28a195
23
pkgs/development/ocaml-modules/lens/default.nix
Normal file
23
pkgs/development/ocaml-modules/lens/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, fetchzip, ppx_deriving, ppxfind, buildDunePackage }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "lens";
|
||||
version = "1.2.3";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/pdonadeo/ocaml-lens/archive/v${version}.tar.gz";
|
||||
sha256 = "09k2vhzysx91syjhgv6w1shc9mgzi0l4bhwpx1g5pi4r4ghjp07y";
|
||||
};
|
||||
|
||||
minimumOCamlVersion = "4.04.1";
|
||||
buildInputs = [ ppx_deriving ppxfind ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/pdonadeo/ocaml-lens;
|
||||
description = "Functional lenses";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [
|
||||
kazcw
|
||||
];
|
||||
};
|
||||
}
|
|
@ -468,6 +468,8 @@ let
|
|||
|
||||
lambdaTerm = callPackage ../development/ocaml-modules/lambda-term { };
|
||||
|
||||
lens = callPackage ../development/ocaml-modules/lens { };
|
||||
|
||||
linenoise = callPackage ../development/ocaml-modules/linenoise { };
|
||||
|
||||
llvm = callPackage ../development/ocaml-modules/llvm {
|
||||
|
|
Loading…
Reference in a new issue