summaryrefslogtreecommitdiffstats
path: root/pkgs/development/tools/dcadec
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-04-25 03:20:18 +0000
committerJan Malakhovski <oxij@oxij.org>2018-04-25 04:18:46 +0000
commit7438083a4d9d7b60b915d59e118f19398f177fe3 (patch)
treed3b029da9c936317d1eb7432f08ecb5ef32b4820 /pkgs/development/tools/dcadec
parentf07f0c6009bb4c2653350fac8db2eee29e09bd1b (diff)
tree-wide: disable `doCheck` and `doInstallCheck` where it fails (the trivial part)
Diffstat (limited to 'pkgs/development/tools/dcadec')
-rw-r--r--pkgs/development/tools/dcadec/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/tools/dcadec/default.nix b/pkgs/development/tools/dcadec/default.nix
index 95f992e490f4..f9ca826cd620 100644
--- a/pkgs/development/tools/dcadec/default.nix
+++ b/pkgs/development/tools/dcadec/default.nix
@@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
installPhase = "make PREFIX=/ DESTDIR=$out install";
+ doCheck = false; # fails with "ERROR: Run 'git submodule update --init test/samples' first."
+
meta = with stdenv.lib; {
description = "DTS Coherent Acoustics decoder with support for HD extensions";
maintainers = with maintainers; [ edwtjo ];
@@ -21,4 +23,4 @@ stdenv.mkDerivation rec {
license = licenses.lgpl21;
platforms = platforms.linux;
};
-} \ No newline at end of file
+}