summary refs log tree commit diff
path: root/pkgs/development/libraries/npth
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-10-29 02:04:57 -0700
committerWilliam A. Kennington III <william@wkennington.com>2014-10-29 02:05:17 -0700
commite67f89261f30e2a5d9f84ddbf9e823d93cea73fb (patch)
tree609481f2bc4ae861b683102bdc27cf5bbf420818 /pkgs/development/libraries/npth
parent06f8885609c136eb4ee1779635f0c58bca3ac5f3 (diff)
downloadnixlib-e67f89261f30e2a5d9f84ddbf9e823d93cea73fb.tar
nixlib-e67f89261f30e2a5d9f84ddbf9e823d93cea73fb.tar.gz
nixlib-e67f89261f30e2a5d9f84ddbf9e823d93cea73fb.tar.bz2
nixlib-e67f89261f30e2a5d9f84ddbf9e823d93cea73fb.tar.lz
nixlib-e67f89261f30e2a5d9f84ddbf9e823d93cea73fb.tar.xz
nixlib-e67f89261f30e2a5d9f84ddbf9e823d93cea73fb.tar.zst
nixlib-e67f89261f30e2a5d9f84ddbf9e823d93cea73fb.zip
npth: 0.9.1 -> 1.0
Diffstat (limited to 'pkgs/development/libraries/npth')
-rw-r--r--pkgs/development/libraries/npth/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/npth/default.nix b/pkgs/development/libraries/npth/default.nix
index 4f87f2bc230f..784b132a2e47 100644
--- a/pkgs/development/libraries/npth/default.nix
+++ b/pkgs/development/libraries/npth/default.nix
@@ -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;
   };
 }