Merge pull request #5865 from nckx/do-checks

Run tests for eid-{mw,viewer} and lz4
This commit is contained in:
Pascal Wittmann 2015-01-20 12:26:58 +01:00
commit 2be76b5405
3 changed files with 11 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl, valgrind }:
stdenv.mkDerivation rec {
# The r127 source still calls itself r126 everywhere, but I'm not going to
@ -11,10 +11,16 @@ stdenv.mkDerivation rec {
sha256 = "0hvbbr07j4hfix4dn4xw4fsmkr5s02bj596fn0i15d1i49xby2aj";
};
# valgrind is required only by `make test`
buildInputs = [ valgrind ];
enableParallelBuilding = true;
makeFlags = "PREFIX=$(out)";
doCheck = true;
checkTarget = "test";
meta = with stdenv.lib; {
description = "Extremely fast compression algorithm";
longDescription = ''

View file

@ -20,6 +20,8 @@ stdenv.mkDerivation rec {
--replace "modutil" "${nssTools}/bin/modutil"
'';
doCheck = true;
meta = with stdenv.lib; {
description = "Belgian electronic identity card (eID) middleware";
homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/;

View file

@ -23,6 +23,8 @@ stdenv.mkDerivation rec {
wrapProgram $out/bin/eid-viewer --suffix LD_LIBRARY_PATH : ${pcsclite}/lib
'';
doCheck = true;
meta = with stdenv.lib; {
description = "Belgian electronic identity card (eID) viewer";
homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/;