Files
nixpkgs/pkgs/development/libraries/libtap/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

29 lines
848 B
Nix

{ lib, stdenv, fetchurl, pkg-config, cmake, perl }:
stdenv.mkDerivation rec {
pname = "libtap";
version = "1.14.0";
src = fetchurl {
url = "https://web-cpan.shlomifish.org/downloads/${pname}-${version}.tar.xz";
sha256 = "1ga7rqmppa8ady665736cx443icscqlgflkqmxd4xbkzypmdj9bk";
};
nativeBuildInputs = [ pkg-config ];
propagatedBuildInputs = [ cmake perl ];
meta = with lib; {
description = "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 = "https://www.shlomifish.org/open-source/projects/libtap/";
license = licenses.bsd3;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.unix;
};
}