nixpkgs/pkgs/development/libraries/ucommon/default.nix
Lluís Batlle i Rossell d3e7649eee Update ucommon to 6.0.5.
The hope that newer means better.
2013-06-26 23:47:34 +02:00

27 lines
720 B
Nix

{ fetchurl, stdenv, gnutls, pkgconfig, zlib, libgcrypt }:
stdenv.mkDerivation rec {
name = "ucommon-6.0.5";
src = fetchurl {
url = mirror://gnu/commoncpp/ucommon-6.0.5.tar.gz;
sha256 = "0w5nl2a2l630n4kvfaz22by1s92ybd87g0q1zpcmsl8i5d00789l";
};
buildInputs = [ pkgconfig gnutls zlib ];
# Propagate libgcrypt because it appears in `ucommon.pc'.
propagatedBuildInputs = [ libgcrypt ];
doCheck = true;
meta = {
description = "GNU uCommon C++, C++ library to facilitate using C++ design patterns";
homepage = http://www.gnu.org/software/commoncpp/;
license = "LGPLv3+";
maintainers = with stdenv.lib.maintainers; [ viric ludo ];
platforms = stdenv.lib.platforms.all;
};
}