aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libchop
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-11-13 14:33:31 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-11-13 14:33:31 +0000
commiteb3c58cd646c5b76a2843c6db76a906d991f9df2 (patch)
treeea78dbaebd2892eed101564c611136d8df58b309 /pkgs/development/libraries/libchop
parent612fd5de821a6c68de7d8d3472e336439a00fee6 (diff)
Adding libchop. I want to try it. Why didn't ludo add this, I don't know. :)
svn path=/nixpkgs/trunk/; revision=30411
Diffstat (limited to 'pkgs/development/libraries/libchop')
-rw-r--r--pkgs/development/libraries/libchop/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libchop/default.nix b/pkgs/development/libraries/libchop/default.nix
new file mode 100644
index 000000000000..53deebc81909
--- /dev/null
+++ b/pkgs/development/libraries/libchop/default.nix
@@ -0,0 +1,39 @@
+{ fetchurl, stdenv, zlib, bzip2, libgcrypt, gdbm, gperf, tdb, gnutls, db4,
+ libuuid, lzo, pkgconfig }:
+
+stdenv.mkDerivation rec {
+ name = "libchop-0.5";
+
+ src = fetchurl {
+ url = "http://download.savannah.gnu.org/releases/libchop/libchop-0.5.tar.gz";
+ sha256 = "0i7gl0c99pf6794bbwm3iha6a0bciqq969mgwwv6gm9phiiy5s8b";
+ };
+
+ buildInputs = [ zlib libgcrypt gdbm gperf bzip2 db4 tdb gnutls libuuid lzo
+ pkgconfig ];
+
+ doCheck = true;
+
+ meta = {
+ description = "The GNU Transport Layer Security Library";
+
+ longDescription = ''
+ GnuTLS is a project that aims to develop a library which
+ provides a secure layer, over a reliable transport
+ layer. Currently the GnuTLS library implements the proposed
+ standards by the IETF's TLS working group.
+
+ Quoting from the TLS protocol specification:
+
+ "The TLS protocol provides communications privacy over the
+ Internet. The protocol allows client/server applications to
+ communicate in a way that is designed to prevent eavesdropping,
+ tampering, or message forgery."
+ '';
+
+ homepage = http://nongnu.org/libchop/;
+ license = "GPLv3+";
+
+ maintainers = [ stdenv.lib.maintainers.ludo stdenv.lib.maintainers.viric ];
+ };
+}