mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
libtap: init at 1.12.0
This commit is contained in:
parent
e72e77806b
commit
6513e09093
28
pkgs/development/libraries/libtap/default.nix
Normal file
28
pkgs/development/libraries/libtap/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchurl, pkgconfig, cmake, perl }:
|
||||
|
||||
with stdenv.lib;
|
||||
stdenv.mkDerivation rec{
|
||||
|
||||
name = "libtap-${version}";
|
||||
version = "1.12.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://web-cpan.shlomifish.org/downloads/${name}.tar.bz2";
|
||||
sha256 = "1ms1770cx8c6q3lhn1chkzy12vzmjgvlms7cqhd2d3260j2wwv5s";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig ];
|
||||
propagatedBuildInputs = [ cmake perl ];
|
||||
|
||||
meta = {
|
||||
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/";
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
};
|
||||
}
|
@ -7345,6 +7345,8 @@ let
|
||||
|
||||
libtoxcore-dev = callPackage ../development/libraries/libtoxcore/new-api { };
|
||||
|
||||
libtap = callPackage ../development/libraries/libtap { };
|
||||
|
||||
libtsm = callPackage ../development/libraries/libtsm {
|
||||
automake = automake114x;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user