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"
6bug-reports: "https://github.com/pdonadeo/ocaml-lens/issues"
7build: [
8 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
9 ["ocaml" "setup.ml" "-build"]
10]
11install: ["ocaml" "setup.ml" "-install"]
12remove: [
13 ["ocamlfind" "remove" "lens"]
14]
15depends: [
16 "ocaml" {>= "4.01.0" & < "5.0.0"}
17 "ocamlfind"
18 "ocamlbuild" {build}
19]
20dev-repo: "git+https://github.com/pdonadeo/ocaml-lens"
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.0.tar.gz"
33 checksum: [
34 "sha256=8e442ad444283689c693b2a225c5249cc2bf584fdb69af9bfa68befdb2a585de"
35 "md5=ab26edc935c0b350a5ae7b714142a724"
36 ]
37}