Adding GNU SIP Witch.

svn path=/nixpkgs/trunk/; revision=25634
This commit is contained in:
Lluís Batlle i Rossell
2011-01-19 21:17:05 +00:00
parent 954561a02d
commit 02f2fd1837
3 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{ fetchurl, stdenv, openssl, pkgconfig, zlib }:
stdenv.mkDerivation rec {
name = "ucommon-4.0.5";
src = fetchurl {
url = mirror://gnu/commoncpp/ucommon-4.0.5.tar.gz;
sha256 = "1h2xyb9s1xivpr5039jhhcqvd7ygn37si8yvmh5fd57n1y8by6vm";
};
buildInputs = [ pkgconfig openssl zlib ];
doCheck = true;
meta = {
description = "C++ library to facilitate using C++ design patterns";
homepage = http://www.gnutelephony.org/index.php/GNU_uCommon_C;
license = "LGPLv3+";
maintainers = [ stdenv.lib.maintainers.viric ];
platforms = stdenv.lib.platforms.all;
};
}