this repo has no description
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Building from scratch

+14 -16
+3 -1
dune-project
··· 25 25 zfs 26 26 cid 27 27 ppx_repr 28 - irmin-fs 28 + irmin-git 29 + morbig 30 + ppx_blob 29 31 cmdliner 30 32 ) 31 33 (tags
+6 -2
shelter.opam
··· 16 16 "zfs" 17 17 "cid" 18 18 "ppx_repr" 19 - "irmin-fs" 19 + "irmin-git" 20 + "morbig" 21 + "ppx_blob" 20 22 "cmdliner" 21 23 "odoc" {with-doc} 22 24 ] ··· 39 41 [ "zfs.dev" "git+https://github.com/patricoferris/ocaml-zfs" ] 40 42 [ "void.dev" "git+https://github.com/quantifyearth/void" ] 41 43 [ "irmin.dev" "git+https://github.com/mirage/irmin#eio" ] 42 - [ "irmin-fs.dev" "git+https://github.com/mirage/irmin#eio" ] 44 + [ "ppx_irmin.dev" "git+https://github.com/mirage/irmin#eio" ] 45 + [ "irmin-git.dev" "git+https://github.com/mirage/irmin#eio" ] 46 + [ "irmin-watcher.dev" "git+https://github.com/patricoferris/irmin-watcher#675125d9e95cd09ef0c18ab1d9d6d69a26856b9f" ] 43 47 ]
+3 -1
shelter.opam.template
··· 2 2 [ "zfs.dev" "git+https://github.com/patricoferris/ocaml-zfs" ] 3 3 [ "void.dev" "git+https://github.com/quantifyearth/void" ] 4 4 [ "irmin.dev" "git+https://github.com/mirage/irmin#eio" ] 5 - [ "irmin-fs.dev" "git+https://github.com/mirage/irmin#eio" ] 5 + [ "ppx_irmin.dev" "git+https://github.com/mirage/irmin#eio" ] 6 + [ "irmin-git.dev" "git+https://github.com/mirage/irmin#eio" ] 7 + [ "irmin-watcher.dev" "git+https://github.com/patricoferris/irmin-watcher#675125d9e95cd09ef0c18ab1d9d6d69a26856b9f" ] 6 8 ]
+1 -10
src/lib/dune
··· 1 1 (library 2 2 (name shelter) 3 3 (public_name shelter) 4 - (libraries 5 - cmdliner 6 - irmin-fs.unix 7 - irmin-git.unix 8 - eio.unix 9 - eio 10 - linenoise 11 - void 12 - repr 13 - morbig)) 4 + (libraries cmdliner irmin-git.unix eio.unix eio linenoise void repr morbig))
+1 -2
src/lib/shelter.ml
··· 36 36 |> List.map Engine.action_of_command 37 37 38 38 let main config ~stdout fs clock proc directory command_file = 39 - Irmin_fs.run directory @@ fun () -> 40 - let conf = Irmin_fs.config (Eio.Path.native_exn directory) in 39 + let conf = Irmin_git.config (Eio.Path.native_exn directory) in 41 40 let repo = Store.Repo.v conf in 42 41 let store = Store.main repo in 43 42 match command_file with