1 { lib, stdenv, fetchurl, pkg-config, cmake, perl }:
3 stdenv.mkDerivation rec {
9 url = "https://web-cpan.shlomifish.org/downloads/${pname}-${version}.tar.xz";
10 sha256 = "1ga7rqmppa8ady665736cx443icscqlgflkqmxd4xbkzypmdj9bk";
13 nativeBuildInputs = [ pkg-config ];
14 propagatedBuildInputs = [ cmake perl ];
17 description = "Library to implement a test protocol";
19 libtap is a library to implement the Test Anything Protocol for
20 C originally created by Nik Clayton. This is a maintenance
21 branch by Shlomi Fish.
23 homepage = "https://www.shlomifish.org/open-source/projects/libtap/";
24 license = licenses.bsd3;
25 maintainers = [ maintainers.AndersonTorres ];
26 platforms = platforms.unix;