Merge pull request #299495 from alyssais/npth-musl-test

npth: add musl regression test
This commit is contained in:
Sandro 2024-03-27 23:38:40 +01:00 committed by GitHub
commit a33a21e383
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, fetchpatch, autoreconfHook }:
{ lib, stdenv, fetchurl, fetchpatch, autoreconfHook, pkgsCross }:
stdenv.mkDerivation rec {
pname = "npth";
@ -21,6 +21,10 @@ stdenv.mkDerivation rec {
doCheck = true;
passthru.tests = {
musl = pkgsCross.musl64.npth;
};
meta = with lib; {
description = "The New GNU Portable Threads Library";
mainProgram = "npth-config";