Skip to content

Commit

Permalink
abella: fix build with OCaml ≥ 4.03
Browse files Browse the repository at this point in the history
  • Loading branch information
vbgl committed Sep 22, 2017
1 parent 743848b commit 3b7c686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/science/logic/abella/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, rsync, ocaml }:
{ stdenv, fetchurl, rsync, ocamlPackages }:

stdenv.mkDerivation rec {
name = "abella-${version}";
Expand All @@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "b56d865ebdb198111f1dcd5b6fbcc0d7fc6dd1294f7601903ba4e3c3322c099c";
};

buildInputs = [ rsync ocaml ];
buildInputs = [ rsync ] ++ (with ocamlPackages; [ ocaml ocamlbuild ]);

installPhase = ''
mkdir -p $out/bin
Expand Down

0 comments on commit 3b7c686

Please sign in to comment.