summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/coan
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-02-17 05:11:53 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-02-17 05:13:40 +0100
commit607cc808d89155c2e53ab8e6eb3d6069356dd570 (patch)
treebb3bddeb98b2725de90859d9fcc62048f91a0705 /pkgs/development/tools/analysis/coan
parenta52343ffe11c1b79130dee4626a2d84bc2d28aeb (diff)
coan: run checks
Diffstat (limited to 'pkgs/development/tools/analysis/coan')
-rw-r--r--pkgs/development/tools/analysis/coan/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/tools/analysis/coan/default.nix b/pkgs/development/tools/analysis/coan/default.nix
index 202109cdbf68f..dd3d90e4dd869 100644
--- a/pkgs/development/tools/analysis/coan/default.nix
+++ b/pkgs/development/tools/analysis/coan/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, perl }:
+{ stdenv, fetchurl, perl, python }:
 
 stdenv.mkDerivation rec {
   version = "6.0.1";
@@ -9,10 +9,13 @@ stdenv.mkDerivation rec {
     sha256 = "1d041j0nd1hc0562lbj269dydjm4rbzagdgzdnmwdxr98544yw44";
   };
 
-  buildInputs = [ perl ];
+  # Python is required only by `make check`
+  buildInputs = [ perl python ];
 
   enableParallelBuilding = true;
 
+  doCheck = true;
+
   postInstall = ''
     mv -v $out/share/man/man1/coan.1.{1,gz}
   '';