npth: 0.9.1 -> 1.0

+5 -5
+5 -5
pkgs/development/libraries/npth/default.nix
··· 1 { stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 - name = "npth-0.91"; 5 6 src = fetchurl { 7 url = "ftp://ftp.gnupg.org/gcrypt/npth/${name}.tar.bz2"; 8 - sha256 = "1qgs1n70x83dyyysabg50dh8s3464jwsa63qi5if2cd3sk78dvya"; 9 }; 10 11 - 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 }: 2 3 stdenv.mkDerivation rec { 4 + name = "npth-1.0"; 5 6 src = fetchurl { 7 url = "ftp://ftp.gnupg.org/gcrypt/npth/${name}.tar.bz2"; 8 + sha256 = "0vppr13821bkdv8348067l1aj3sb0n0rbmnsgymzy3iifvirvm4s"; 9 }; 10 11 + 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 }