smatch: add dependency on Perl

Signed-off-by: Cyril Roelandt <tipecaml@gmail.com>
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Cyril Roelandt 2012-10-30 17:14:06 +01:00 committed by Ludovic Courtès
parent d1202f702b
commit 4b3d29003e

View file

@ -1,4 +1,4 @@
{ stdenv, fetchgit, sqlite, pkgconfig
{ stdenv, fetchgit, sqlite, pkgconfig, perl
, buildllvmsparse ? true
, buildc2xml ? true
, llvm ? null, libxml2 ? null
@ -16,7 +16,7 @@ stdenv.mkDerivation {
sha256 = "09a44967d4cff026c67062f778e251d0b432af132e9d59a47b7d3167f379adfa";
};
buildInputs = [sqlite pkgconfig]
buildInputs = [sqlite pkgconfig perl]
++ stdenv.lib.optional buildllvmsparse llvm
++ stdenv.lib.optional buildc2xml libxml2;