exosip: 4.0.0 -> 4.1.0

ndowens e86bb4da 45cfd396

+10 -8
+10 -8
pkgs/development/libraries/exosip/default.nix
··· 1 1 {stdenv, fetchurl, libosip, openssl, pkgconfig }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "4.0.0"; 5 - src = fetchurl { 4 + name = "libexosip2-${version}"; 5 + version = "4.1.0"; 6 + 7 + src = fetchurl { 6 8 url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz"; 7 - sha256 = "1rdjr3x7s992w004cqf4xji1522an9rpzsr9wvyhp685khmahrsj"; 9 + sha256 = "17cna8kpc8nk1si419vgr6r42k2lda0rdk50vlxrw8rzg0xp2xrw"; 8 10 }; 9 - name = "libexosip2-${version}"; 10 - 11 + 12 + nativeBuildInputs = [ pkgconfig ]; 11 13 buildInputs = [ libosip openssl pkgconfig ]; 12 14 13 - meta = { 14 - license = stdenv.lib.licenses.gpl2Plus; 15 + meta = with stdenv.lib; { 16 + license = licenses.gpl2Plus; 15 17 description = "Library that hides the complexity of using the SIP protocol"; 16 - platforms = stdenv.lib.platforms.linux; 18 + platforms =platforms.linux; 17 19 }; 18 20 }