3
0
Fork 0
forked from mirrors/nixpkgs

libsoup: 2.48 -> 2.50

Also remove doc output as this package generate no documentation.
This commit is contained in:
William A. Kennington III 2015-07-27 17:45:22 -07:00
parent 6b55ca513d
commit 459c3ff560
2 changed files with 2 additions and 15 deletions

View file

@ -1,10 +0,0 @@
--- a/libsoup/libsoup-2.4.sym 2014-10-29 22:37:54 -0700
+++ b/libsoup/libsoup-2.4.sym 2014-06-18 07:42:51 -0700
@@ -348,7 +348,6 @@
soup_server_get_async_context
soup_server_get_listener
soup_server_get_listeners
-soup_server_get_gsocket
soup_server_get_port
soup_server_get_type
soup_server_get_uris

View file

@ -3,7 +3,7 @@
, libintlOrEmpty
, intltool, python }:
let
majorVersion = "2.48";
majorVersion = "2.50";
version = "${majorVersion}.0";
in
stdenv.mkDerivation {
@ -11,14 +11,11 @@ stdenv.mkDerivation {
src = fetchurl {
url = "mirror://gnome/sources/libsoup/${majorVersion}/libsoup-${version}.tar.xz";
sha256 = "ea34dd64fe44343445daf6dd690d0691e9d973468de44878da97371c16d89784";
sha256 = "1e01365ac4af3817187ea847f9d3588c27eee01fc519a5a7cb212bb78b0f667b";
};
outputs = [ "out" "doc" ];
patchPhase = ''
patchShebangs libsoup/
patch -p1 < ${./bad-symbol.patch}
'';
buildInputs = libintlOrEmpty ++ [ intltool python sqlite ];