about summary refs log tree commit diff
path: root/pkgs/sternenseemann/default.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-03-01 05:53:28 +0100
committeraszlig <aszlig@nix.build>2018-03-01 06:14:49 +0100
commit4a0d04388c43c8bf1a69c016bbd6435724d1e05a (patch)
treee8886993ed8d83cdc50ef976024750fd78ca29c9 /pkgs/sternenseemann/default.nix
parent2c94ca56b55805e416300873eaed84feb7d4b79f (diff)
sternenseemann/logbook: Support newer Angstrong
Angstrong doesn't work anymore for OCaml versions lower that 4.03, so
let's use version 4.04.2 and fix logbook to cope with the interface
changes in Angstrong 0.7.0.

I've opened a pull request (sternenseemann/logbook#1) to fix it upstream
and also using the commit from the pull request here.

This fixes the following evaluation error:

in job 'channels.generic':
angstrom is not available for OCaml 4.02.3

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @sternenseemann
Diffstat (limited to 'pkgs/sternenseemann/default.nix')
-rw-r--r--pkgs/sternenseemann/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/sternenseemann/default.nix b/pkgs/sternenseemann/default.nix
index a7ea47d1..d3b29076 100644
--- a/pkgs/sternenseemann/default.nix
+++ b/pkgs/sternenseemann/default.nix
@@ -1,6 +1,6 @@
-{ haskellPackages, ocamlPackages_4_02 }:
+{ haskellPackages, ocamlPackages }:
 
 {
   spacecookie = haskellPackages.callPackage ./spacecookie {};
-  logbook = ocamlPackages_4_02.callPackage ./logbook {};
+  logbook = ocamlPackages.callPackage ./logbook {};
 }