1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

coan: skip checks; they work locally but fail on Hydra

This reverts commit 607cc808d8.
This commit is contained in:
Tobias Geerinckx-Rice 2015-02-23 01:45:08 +01:00
parent dcc61f856c
commit 841905e1ea

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, perl, python }:
{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
version = "6.0.1";
@ -9,13 +9,10 @@ stdenv.mkDerivation rec {
sha256 = "1d041j0nd1hc0562lbj269dydjm4rbzagdgzdnmwdxr98544yw44";
};
# Python is required only by `make check`
buildInputs = [ perl python ];
buildInputs = [ perl ];
enableParallelBuilding = true;
doCheck = true;
postInstall = ''
mv -v $out/share/man/man1/coan.1.{1,gz}
'';