this repo has no description
1opam-version: "2.0" 2maintainer: "Paolo Donadeo <p.donadeo@gmail.com>" 3authors: [ "Alessandro Strada <alessandro.strada@gmail.com>" ] 4license: "BSD-3-Clause" 5homepage: "https://github.com/pdonadeo/ocaml-lens" 6dev-repo: "git+https://github.com/pdonadeo/ocaml-lens.git" 7bug-reports: "https://github.com/pdonadeo/ocaml-lens/issues" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-ppx" {ppx_deriving:installed & ppx_tools:installed} ] 10 ["ocaml" "setup.ml" "-build"] 11] 12install: ["ocaml" "setup.ml" "-install"] 13remove: [ 14 ["ocamlfind" "remove" "lens"] 15] 16depends: [ 17 "ocaml" {>= "4.01.0" & < "5.0.0"} 18 "ocamlfind" {build} 19 "ounit" {build} 20 "ocamlbuild" {build} 21] 22depopts: [ 23 "ppx_deriving" 24 "ppx_tools" 25] 26synopsis: "Functional lenses" 27description: """ 28Based on F# implementation in https://github.com/fsharp/fsharpx 29see https://github.com/fsharp/fsharpx/blob/master/src/FSharpx.Core/Lens.fs for the original implementation 30see http://bugsquash.blogspot.com/2011/11/lenses-in-f.html - Lenses in F# 31see http://stackoverflow.com/questions/8179485/updating-nested-immutable-data-structures - Stackoverflow question about Updating nested immutable data structures 32see http://stackoverflow.com/questions/5767129/lenses-fclabels-data-accessor-which-library-for-structure-access-and-mutatio - Haskell libraries for structure access and mutation 33see http://www.youtube.com/watch?v=efv0SQNde5Q - Functional lenses for Scala by Edward Kmett on YouTube 34see http://patternsinfp.wordpress.com/2011/01/31/lenses-are-the-coalgebras-for-the-costate-comonad - Lenses are the coalgebras for the costate comonad by Jeremy Gibbons""" 35flags: light-uninstall 36url { 37 src: "https://github.com/pdonadeo/ocaml-lens/archive/v1.1.0.tar.gz" 38 checksum: [ 39 "sha256=558db9807f04bf7afd6760b63960d9547597d9b69b15b60e5ddbbb69eee84fcb" 40 "md5=857d2ab648c5d65837dad0ace14a5ad6" 41 ] 42} 43conflicts: [ 44 "ppx_deriving" {>= "5.0"} 45]