utf8proc: add relevant revdeps to passthru.tests

This commit is contained in:
sternenseemann 2022-11-12 15:18:34 +01:00
parent 243d044a45
commit 5ca8e2e9e1

View File

@ -1,4 +1,9 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
{ lib, stdenv, fetchFromGitHub, cmake
# passthru.tests
, tmux
, fcft
, arrow-cpp
}:
stdenv.mkDerivation rec {
pname = "utf8proc";
@ -20,6 +25,10 @@ stdenv.mkDerivation rec {
doCheck = true;
passthru.tests = {
inherit fcft tmux arrow-cpp;
};
meta = with lib; {
description = "A clean C library for processing UTF-8 Unicode data";
homepage = "https://juliastrings.github.io/utf8proc/";