66e1473eaf
Would have caught the issue fixed by
180b5c1c8c
("pkgsMusl.npth: backport patch to fix build").
I used pkgsCross instead of pkgsMusl so it does something useful on
non-Linux.
44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, autoreconfHook, pkgsCross }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "npth";
|
|
version = "1.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnupg/npth/npth-${version}.tar.bz2";
|
|
sha256 = "sha256-hYn1aTe3XOM7KNMS/MvzArO3HsPzlF/eaqp0AnkUrQU=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "musl.patch";
|
|
url = "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git;a=patch;h=417abd56fd7bf45cd4948414050615cb1ad59134";
|
|
hash = "sha256-0g2tLFjW1bybNi6oxlW7vPimsQLjmTih4JZSoATjESI=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
doCheck = true;
|
|
|
|
passthru.tests = {
|
|
musl = pkgsCross.musl64.npth;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "The New GNU Portable Threads Library";
|
|
mainProgram = "npth-config";
|
|
longDescription = ''
|
|
This is a library to provide the GNU Pth API and thus a non-preemptive
|
|
threads implementation.
|
|
|
|
In contrast to GNU Pth is is based on the system's standard threads
|
|
implementation. This allows the use of libraries which are not
|
|
compatible to GNU Pth. Experience with a Windows Pth emulation showed
|
|
that this is a solid way to provide a co-routine based framework.
|
|
'';
|
|
homepage = "http://www.gnupg.org";
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|