Merge pull request #5865 from nckx/do-checks
Run tests for eid-{mw,viewer} and lz4
This commit is contained in:
commit
2be76b5405
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl, valgrind }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
# The r127 source still calls itself r126 everywhere, but I'm not going to
|
# The r127 source still calls itself r126 everywhere, but I'm not going to
|
||||||
@ -11,10 +11,16 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0hvbbr07j4hfix4dn4xw4fsmkr5s02bj596fn0i15d1i49xby2aj";
|
sha256 = "0hvbbr07j4hfix4dn4xw4fsmkr5s02bj596fn0i15d1i49xby2aj";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# valgrind is required only by `make test`
|
||||||
|
buildInputs = [ valgrind ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
makeFlags = "PREFIX=$(out)";
|
makeFlags = "PREFIX=$(out)";
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
checkTarget = "test";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Extremely fast compression algorithm";
|
description = "Extremely fast compression algorithm";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
@ -20,6 +20,8 @@ stdenv.mkDerivation rec {
|
|||||||
--replace "modutil" "${nssTools}/bin/modutil"
|
--replace "modutil" "${nssTools}/bin/modutil"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Belgian electronic identity card (eID) middleware";
|
description = "Belgian electronic identity card (eID) middleware";
|
||||||
homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/;
|
homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/;
|
||||||
|
@ -23,6 +23,8 @@ stdenv.mkDerivation rec {
|
|||||||
wrapProgram $out/bin/eid-viewer --suffix LD_LIBRARY_PATH : ${pcsclite}/lib
|
wrapProgram $out/bin/eid-viewer --suffix LD_LIBRARY_PATH : ${pcsclite}/lib
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Belgian electronic identity card (eID) viewer";
|
description = "Belgian electronic identity card (eID) viewer";
|
||||||
homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/;
|
homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user