aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/gsasl
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-04-26 08:59:25 +0000
committerLudovic Courtès <ludo@gnu.org>2010-04-26 08:59:25 +0000
commita174ff34b8dab7f1a54cbb0223a0dcfe88059c5b (patch)
treeec3375b7c1d51e08def56252df0a9b217e7f8533 /pkgs/development/libraries/gsasl
parent9009a04e383b8e29d8ae789f259dd3709a61efba (diff)
Add GNU SASL, GNU GSS-API, and GNU Rush.
Contributed by Brian Gough <bjg@gnu.org>. svn path=/nixpkgs/trunk/; revision=21315
Diffstat (limited to 'pkgs/development/libraries/gsasl')
-rw-r--r--pkgs/development/libraries/gsasl/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gsasl/default.nix b/pkgs/development/libraries/gsasl/default.nix
new file mode 100644
index 000000000000..2e81a4806f8c
--- /dev/null
+++ b/pkgs/development/libraries/gsasl/default.nix
@@ -0,0 +1,29 @@
+{ fetchurl, stdenv }:
+
+stdenv.mkDerivation rec {
+ name = "gsasl-1.4.4";
+
+ src = fetchurl {
+ url = "mirror://gnu/gsasl/${name}.tar.gz";
+ sha256 = "0xd9irff42dd5i4cr74dy0yd9ijjv9nkg6c2l1328grsn8zifwdc";
+ };
+
+ 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;
+ };
+}