···11{ stdenv, fetchurl }:
2233stdenv.mkDerivation rec {
44- name = "npth-0.91";
44+ name = "npth-1.0";
5566 src = fetchurl {
77 url = "ftp://ftp.gnupg.org/gcrypt/npth/${name}.tar.bz2";
88- sha256 = "1qgs1n70x83dyyysabg50dh8s3464jwsa63qi5if2cd3sk78dvya";
88+ sha256 = "0vppr13821bkdv8348067l1aj3sb0n0rbmnsgymzy3iifvirvm4s";
99 };
10101111- meta = {
1111+ meta = with stdenv.lib; {
1212 description = "The New GNU Portable Threads Library";
1313 longDescription = ''
1414 This is a library to provide the GNU Pth API and thus a non-preemptive
···2020 that this is a solid way to provide a co-routine based framework.
2121 '';
2222 homepage = http://www.gnupg.org;
2323- license = stdenv.lib.licenses.lgpl3;
2424- platforms = stdenv.lib.platforms.all;
2323+ license = licenses.lgpl3;
2424+ platforms = platforms.all;
2525 };
2626}