nixpkgs/pkgs/development/libraries/gsasl/default.nix
Ludovic Courtès da0860c036 GNU SASL 1.6.0.
svn path=/nixpkgs/trunk/; revision=25446
2011-01-06 14:37:55 +00:00

30 lines
785 B
Nix

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "gsasl-1.6.0";
src = fetchurl {
url = "mirror://gnu/gsasl/${name}.tar.gz";
sha256 = "1panxrfy8f6gfhd3iqx1rssz7k473463xvnp6sxagrg4p83qz36a";
};
doCheck = true;
meta = {
description = "GNU SASL, Simple Authentication and Security Layer library";
longDescription =
'' GNU SASL is a library that implements the IETF Simple
Authentication and Security Layer (SASL) framework and
some SASL mechanisms. SASL is used in network servers
(e.g. IMAP, SMTP, etc.) to authenticate peers.
'';
homepage = http://www.gnu.org/software/gsasl/;
license = "GPLv3+";
maintainers = [ stdenv.lib.maintainers.bjg ];
platforms = stdenv.lib.platforms.all;
};
}