2011-04-12 08:05:35 +00:00
|
|
|
{ fetchurl, stdenv, gnutls, pkgconfig, zlib, libgcrypt }:
|
2011-01-19 21:17:05 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-18 16:13:49 +00:00
|
|
|
name = "ucommon-6.0.7";
|
2011-01-19 21:17:05 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-12-18 16:13:49 +00:00
|
|
|
url = mirror://gnu/commoncpp/ucommon-6.0.7.tar.gz;
|
|
|
|
sha256 = "1rlvchmg6qq8jq79qjgv0l0wqi1dqhmm4ng1qj9f012dbhwcap3x";
|
2011-01-19 21:17:05 +00:00
|
|
|
};
|
|
|
|
|
2011-01-19 21:48:05 +00:00
|
|
|
buildInputs = [ pkgconfig gnutls zlib ];
|
2011-01-19 21:17:05 +00:00
|
|
|
|
2011-04-12 08:05:35 +00:00
|
|
|
# Propagate libgcrypt because it appears in `ucommon.pc'.
|
|
|
|
propagatedBuildInputs = [ libgcrypt ];
|
|
|
|
|
2011-01-19 21:17:05 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "C++ library to facilitate using C++ design patterns";
|
2011-03-10 16:27:53 +00:00
|
|
|
homepage = http://www.gnu.org/software/commoncpp/;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.lgpl3Plus;
|
2011-01-19 21:17:05 +00:00
|
|
|
|
2013-08-16 21:44:33 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ viric ];
|
2011-01-19 21:17:05 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|