3
0
Fork 0
forked from mirrors/nixpkgs

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 ];
propagatedBuildInputs = [ cmake perl ];
meta = {
meta = with stdenv.lib; {
description = "A library to implement a test protocol";
longDescription = ''
libtap is a library to implement the Test Anything Protocol for
C originally created by Nik Clayton. This is a maintenance
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;
maintainers = [ maintainers.AndersonTorres ];
platforms = stdenv.lib.platforms.unix;
platforms = platforms.unix;
};
}