Skip to content

Commit

Permalink
obliv-c: make explicit the ocamlbuild dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
vbgl committed Oct 12, 2017
1 parent 00e27a2 commit 42541c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/compilers/obliv-c/default.nix
@@ -1,8 +1,9 @@
{stdenv, fetchurl, ocaml, libgcrypt, fetchFromGitHub, ocamlPackages, perl}:
{ stdenv, fetchurl, libgcrypt, fetchFromGitHub, ocamlPackages, perl }:
stdenv.mkDerivation rec {
name = "obliv-c-${version}";
version = "0.0pre20170827";
buildInputs = [ ocaml ocamlPackages.findlib perl ];
buildInputs = [ perl ]
++ (with ocamlPackages; [ ocaml findlib ocamlbuild ]);
propagatedBuildInputs = [ libgcrypt ];
src = fetchFromGitHub {
owner = "samee";
Expand Down

0 comments on commit 42541c4

Please sign in to comment.