···1{ stdenv, fetchurl }:
23stdenv.mkDerivation rec {
4- name = "npth-0.91";
56 src = fetchurl {
7 url = "ftp://ftp.gnupg.org/gcrypt/npth/${name}.tar.bz2";
8- sha256 = "1qgs1n70x83dyyysabg50dh8s3464jwsa63qi5if2cd3sk78dvya";
9 };
1011- meta = {
12 description = "The New GNU Portable Threads Library";
13 longDescription = ''
14 This is a library to provide the GNU Pth API and thus a non-preemptive
···20 that this is a solid way to provide a co-routine based framework.
21 '';
22 homepage = http://www.gnupg.org;
23- license = stdenv.lib.licenses.lgpl3;
24- platforms = stdenv.lib.platforms.all;
25 };
26}
···1{ stdenv, fetchurl }:
23stdenv.mkDerivation rec {
4+ name = "npth-1.0";
56 src = fetchurl {
7 url = "ftp://ftp.gnupg.org/gcrypt/npth/${name}.tar.bz2";
8+ sha256 = "0vppr13821bkdv8348067l1aj3sb0n0rbmnsgymzy3iifvirvm4s";
9 };
1011+ meta = with stdenv.lib; {
12 description = "The New GNU Portable Threads Library";
13 longDescription = ''
14 This is a library to provide the GNU Pth API and thus a non-preemptive
···20 that this is a solid way to provide a co-routine based framework.
21 '';
22 homepage = http://www.gnupg.org;
23+ license = licenses.lgpl3;
24+ platforms = platforms.all;
25 };
26}