3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #25161 from armijnhemel/ucommon

ucommon: 6.3.1 -> 7.0.0
This commit is contained in:
Jörg Thalheim 2017-04-24 23:09:26 +02:00 committed by GitHub
commit 5793e97e6e
2 changed files with 4 additions and 4 deletions

View file

@ -10,11 +10,11 @@ assert xor (openssl != null) (gnutls != null);
assert !(xor (openssl != null) (zlib != null));
stdenv.mkDerivation rec {
name = "ucommon-6.3.1";
name = "ucommon-7.0.0";
src = fetchurl {
url = "mirror://gnu/commoncpp/${name}.tar.gz";
sha256 = "1marbwbqnllhm9nh22lvyfjy802pgy1wx7j7kkpkasbm9r0sb6mm";
sha256 = "6ac9f76c2af010f97e916e4bae1cece341dc64ca28e3881ff4ddc3bc334060d7";
};
buildInputs = [ pkgconfig ];

View file

@ -1,11 +1,11 @@
{ fetchurl, stdenv, pkgconfig, ucommon, libosip, libexosip, gnutls, zlib }:
stdenv.mkDerivation rec {
name = "sipwitch-1.9.8";
name = "sipwitch-1.9.15";
src = fetchurl {
url = "mirror://gnu/sipwitch/${name}.tar.gz";
sha256 = "0117c5iid1vrwl7sl3pys2jlinpmx2vfp8wcdwk93m7cc6k9793b";
sha256 = "2a7aa86a653f6810b3cd9cce6c37b3f70e937e7d14b09fd5c2a70d70588a9482";
};
buildInputs = [ pkgconfig ucommon libosip libexosip gnutls zlib ];