tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
libtap: init at 1.12.0
AndersonTorres
10 years ago
6513e090
e72e7780
+30
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
libtap
default.nix
top-level
all-packages.nix
+28
pkgs/development/libraries/libtap/default.nix
···
1
1
+
{ stdenv, fetchurl, pkgconfig, cmake, perl }:
2
2
+
3
3
+
with stdenv.lib;
4
4
+
stdenv.mkDerivation rec{
5
5
+
6
6
+
name = "libtap-${version}";
7
7
+
version = "1.12.0";
8
8
+
9
9
+
src = fetchurl {
10
10
+
url = "http://web-cpan.shlomifish.org/downloads/${name}.tar.bz2";
11
11
+
sha256 = "1ms1770cx8c6q3lhn1chkzy12vzmjgvlms7cqhd2d3260j2wwv5s";
12
12
+
};
13
13
+
14
14
+
buildInputs = [ pkgconfig ];
15
15
+
propagatedBuildInputs = [ cmake perl ];
16
16
+
17
17
+
meta = {
18
18
+
description = "A library to implement a test protocol";
19
19
+
longDescription = ''
20
20
+
libtap is a library to implement the Test Anything Protocol for
21
21
+
C originally created by Nik Clayton. This is a maintenance
22
22
+
branch by Shlomi Fish.
23
23
+
'';
24
24
+
homepage = "http://www.shlomifish.org/open-source/projects/libtap/";
25
25
+
license = licenses.bsd3;
26
26
+
maintainers = [ maintainers.AndersonTorres ];
27
27
+
};
28
28
+
}
+2
pkgs/top-level/all-packages.nix
···
7345
7345
7346
7346
libtoxcore-dev = callPackage ../development/libraries/libtoxcore/new-api { };
7347
7347
7348
7348
+
libtap = callPackage ../development/libraries/libtap { };
7349
7349
+
7348
7350
libtsm = callPackage ../development/libraries/libtsm {
7349
7351
automake = automake114x;
7350
7352
};