libtap: small fixes

This commit is contained in:
AndersonTorres 2018-10-06 23:35:10 -03:00
parent 3807a94545
commit b1e72d7465

View File

@ -14,16 +14,16 @@ stdenv.mkDerivation rec{
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ cmake perl ]; propagatedBuildInputs = [ cmake perl ];
meta = { meta = with stdenv.lib; {
description = "A library to implement a test protocol"; description = "A library to implement a test protocol";
longDescription = '' longDescription = ''
libtap is a library to implement the Test Anything Protocol for libtap is a library to implement the Test Anything Protocol for
C originally created by Nik Clayton. This is a maintenance C originally created by Nik Clayton. This is a maintenance
branch by Shlomi Fish. branch by Shlomi Fish.
''; '';
homepage = http://www.shlomifish.org/open-source/projects/libtap/; homepage = https://www.shlomifish.org/open-source/projects/libtap/;
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.AndersonTorres ]; maintainers = [ maintainers.AndersonTorres ];
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
}; };
} }