aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libtasn1
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-05-20 14:25:09 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-05-20 14:25:09 +0000
commiteca684a44bbd356760881b8a9a65cc6c99212403 (patch)
tree500c0dea52c6d20c7c942fcde58e96bc80f5961b /pkgs/development/libraries/libtasn1
parentc21a987841b4c90413a4afa551ad19e2dda4f250 (diff)
* Gnome 2.22.1.
* Moved some of the Gnome package Nix expressions into pkgs/desktops/gnome/default.nix - no need to have them in separate files. This way the code is much shorter. Still to be done for all the other Gnome packages. * Glib 2.16.3. svn path=/nixpkgs/branches/stdenv-updates/; revision=11855
Diffstat (limited to 'pkgs/development/libraries/libtasn1')
-rw-r--r--pkgs/development/libraries/libtasn1/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libtasn1/default.nix b/pkgs/development/libraries/libtasn1/default.nix
new file mode 100644
index 000000000000..b1130f6fd34e
--- /dev/null
+++ b/pkgs/development/libraries/libtasn1/default.nix
@@ -0,0 +1,15 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+ name = "libtasn1-1.4";
+
+ src = fetchurl {
+ url = http://josefsson.org/gnutls/releases/libtasn1/libtasn1-1.4.tar.gz;
+ sha256 = "15k14cl334cjdw6hbw3scdxm0pfv078kfq6bnz9ngyg4by1kgal4";
+ };
+
+ meta = {
+ homepage = http://josefsson.org/libtasn1/;
+ description = "An ASN.1 library";
+ };
+}