nixpkgs/pkgs/development/libraries/libtap/default.nix

30 lines
865 B
Nix
Raw Normal View History

2015-08-04 00:29:26 +00:00
{ stdenv, fetchurl, pkgconfig, cmake, perl }:
with stdenv.lib;
stdenv.mkDerivation rec{
pname = "libtap";
2015-08-04 00:29:26 +00:00
version = "1.12.0";
src = fetchurl {
url = "https://web-cpan.shlomifish.org/downloads/${pname}-${version}.tar.bz2";
2015-08-04 00:29:26 +00:00
sha256 = "1ms1770cx8c6q3lhn1chkzy12vzmjgvlms7cqhd2d3260j2wwv5s";
};
nativeBuildInputs = [ pkgconfig ];
2015-08-04 00:29:26 +00:00
propagatedBuildInputs = [ cmake perl ];
2018-10-07 02:35:10 +00:00
meta = with stdenv.lib; {
2015-08-04 00:29:26 +00:00
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.
'';
2018-10-07 02:35:10 +00:00
homepage = https://www.shlomifish.org/open-source/projects/libtap/;
2015-08-04 00:29:26 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.AndersonTorres ];
2018-10-07 02:35:10 +00:00
platforms = platforms.unix;
2015-08-04 00:29:26 +00:00
};
}