about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2020-05-13 22:10:27 +0200
committersternenseemann <git@lukasepple.de>2020-05-13 22:10:27 +0200
commitb01ded6936995bab3f9d52ff11bc1174687f283f (patch)
tree84869aca6e2c0fa29835039a788b790e572556a8
parentd4ee40ada4bba55505cc55ab653e69fa5c6406e6 (diff)
add installation instructions
-rw-r--r--README.md9
-rw-r--r--logbook.nix2
2 files changed, 10 insertions, 1 deletions
diff --git a/README.md b/README.md
index d8efc1d..6bb74aa 100644
--- a/README.md
+++ b/README.md
@@ -165,6 +165,15 @@ the `--template` option. For templating, `logbook` provides the following variab
 
 For an example template see [`src/logbook_template.ml`](./src/logbook_template.ml)
 
+
+## Installation
+
+* Using OPAM:
+  `opam pin add logbook https://github.com/sternenseemann/logbook.git`
+* On NixOS:
+  * Directly from `master`: `nix-env -f https://github.com/sternenseemann/logbook/archive/master.tar.gz -i` (also works with the release source tarballs!)
+  * using [vuizvui](https://github.com/openlab-aux/vuizvui): `vuizvui.pkgs.sternenseemann.logbook`
+
 ## Future Improvements
 
 A little todo list, might get to it at some point.
diff --git a/logbook.nix b/logbook.nix
index dc857cb..9ff19ca 100644
--- a/logbook.nix
+++ b/logbook.nix
@@ -1,7 +1,7 @@
 { buildDunePackage, ocaml_lwt, jingoo, ptime, angstrom, astring, cow}:
 
 buildDunePackage rec {
-  version = "0.2";
+  version = "0.3";
   pname = "logbook";
 
   src = ./.;