mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
Adding libchop. I want to try it. Why didn't ludo add this, I don't know. :)
svn path=/nixpkgs/trunk/; revision=30411
This commit is contained in:
parent
612fd5de82
commit
eb3c58cd64
39
pkgs/development/libraries/libchop/default.nix
Normal file
39
pkgs/development/libraries/libchop/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -3804,6 +3804,8 @@ let
|
||||
inherit (gnome) gtk glib libsoup;
|
||||
};
|
||||
|
||||
libchop = callPackage ../development/libraries/libchop { };
|
||||
|
||||
libcm = callPackage ../development/libraries/libcm { };
|
||||
|
||||
libctemplate = callPackage ../development/libraries/libctemplate { };
|
||||
|
Loading…
Reference in New Issue
Block a user