vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / by-name / li / libtap / package.nix
blob46b2e492cb35345d929b12b323c78cab041a9211
1 { lib, stdenv, fetchurl, pkg-config, cmake, perl }:
3 stdenv.mkDerivation rec {
5   pname = "libtap";
6   version = "1.14.0";
8   src = fetchurl {
9     url = "https://web-cpan.shlomifish.org/downloads/${pname}-${version}.tar.xz";
10     sha256 = "1ga7rqmppa8ady665736cx443icscqlgflkqmxd4xbkzypmdj9bk";
11   };
13   nativeBuildInputs = [ pkg-config ];
14   propagatedBuildInputs = [ cmake perl ];
16   meta = with lib; {
17     description = "Library to implement a test protocol";
18     longDescription = ''
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.
22     '';
23     homepage = "https://www.shlomifish.org/open-source/projects/libtap/";
24     license = licenses.bsd3;
25     maintainers = [ maintainers.AndersonTorres ];
26     platforms = platforms.unix;
27   };