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] 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 "ocamlbuild" {build} 20] 21synopsis: "Functional lenses" 22description: """ 23Based on F# implementation in https://github.com/fsharp/fsharpx 24see https://github.com/fsharp/fsharpx/blob/master/src/FSharpx.Core/Lens.fs for the original implementation 25see http://bugsquash.blogspot.com/2011/11/lenses-in-f.html - Lenses in F# 26see http://stackoverflow.com/questions/8179485/updating-nested-immutable-data-structures - Stackoverflow question about Updating nested immutable data structures 27see http://stackoverflow.com/questions/5767129/lenses-fclabels-data-accessor-which-library-for-structure-access-and-mutatio - Haskell libraries for structure access and mutation 28see http://www.youtube.com/watch?v=efv0SQNde5Q - Functional lenses for Scala by Edward Kmett on YouTube 29see 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""" 30flags: light-uninstall 31url { 32 src: "https://github.com/pdonadeo/ocaml-lens/archive/v1.0.2.tar.gz" 33 checksum: [ 34 "sha256=41d6de4691174e88b6594bd8d31cb04f987e26b6403366ee0e11029405d9eb54" 35 "md5=2f15203394f6a4b3277cb7ee4e9a6b81" 36 ] 37}