nixpkgs/pkgs/development/libraries/libtasn1/default.nix
Eelco Dolstra eca684a44b * 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
2008-05-20 14:25:09 +00:00

16 lines
345 B
Nix

{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";
};
}