npth: 0.9.1 -> 1.0

This commit is contained in:
William A. Kennington III 2014-10-29 02:04:57 -07:00
parent 06f8885609
commit e67f89261f

View File

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