about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-04-13 08:56:04 +0000
committerLudovic Courtès <ludo@gnu.org>2010-04-13 08:56:04 +0000
commite56e8ed250c82c14a09c70fa1f631c6811640789 (patch)
tree24bf6064ca1a34b44b607f90beb375eeb7db90d1 /pkgs/development
parentf226c852493e2ee723e280da0438c9abb2650b37 (diff)
downloadnixlib-e56e8ed250c82c14a09c70fa1f631c6811640789.tar
nixlib-e56e8ed250c82c14a09c70fa1f631c6811640789.tar.gz
nixlib-e56e8ed250c82c14a09c70fa1f631c6811640789.tar.bz2
nixlib-e56e8ed250c82c14a09c70fa1f631c6811640789.tar.lz
nixlib-e56e8ed250c82c14a09c70fa1f631c6811640789.tar.xz
nixlib-e56e8ed250c82c14a09c70fa1f631c6811640789.tar.zst
nixlib-e56e8ed250c82c14a09c70fa1f631c6811640789.zip
GNU libtasn1 2.5.
svn path=/nixpkgs/trunk/; revision=21050
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/libtasn1/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libtasn1/default.nix b/pkgs/development/libraries/libtasn1/default.nix
index e259c7b6e439..31ae886d2e4c 100644
--- a/pkgs/development/libraries/libtasn1/default.nix
+++ b/pkgs/development/libraries/libtasn1/default.nix
@@ -1,13 +1,15 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "libtasn1-2.4";
+  name = "libtasn1-2.5";
 
   src = fetchurl {
     url = "mirror://gnu/libtasn1/${name}.tar.gz";
-    sha256 = "03qz9wnx3643wvy10603syx97mi634z6bhdwznzmqcsq6hwg5g69";
+    sha256 = "0xr4hsrs7cjx5zy7nkm6a93gkx7dkynyycgk2ayhscf5n5z96pyz";
   };
 
+  doCheck = true;
+
   meta = {
     homepage = http://www.gnu.org/software/libtasn1/;
     description = "GNU Libtasn1, an ASN.1 library";