mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
Add libsoup 2.31 - may work better with GnuTLS update
svn path=/nixpkgs/trunk/; revision=22523
This commit is contained in:
parent
6be9a7692a
commit
b3378524fa
@ -182,6 +182,12 @@ rec {
|
||||
inherit GConf gnome_keyring;
|
||||
};
|
||||
|
||||
libsoup_2_31 = import ./desktop/libsoup/2.31.nix {
|
||||
inherit (pkgs) stdenv fetchurl pkgconfig libxml2 gnutls libproxy sqlite curl;
|
||||
inherit (pkgs.gtkLibs) glib;
|
||||
inherit GConf gnome_keyring;
|
||||
};
|
||||
|
||||
libwnck = import ./desktop/libwnck {
|
||||
inherit (pkgs) stdenv fetchurl pkgconfig;
|
||||
inherit (pkgs.xlibs) libX11;
|
||||
|
12
pkgs/desktops/gnome-2.28/desktop/libsoup/2.31.nix
Normal file
12
pkgs/desktops/gnome-2.28/desktop/libsoup/2.31.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{stdenv, fetchurl, pkgconfig, libxml2, gnutls, libproxy, sqlite, curl,
|
||||
glib, GConf, gnome_keyring}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libsoup-2.31.2";
|
||||
src = fetchurl {
|
||||
url = mirror://gnome/sources/libsoup/2.31/libsoup-2.31.2.tar.bz2;
|
||||
sha256 = "ae52e970deb0ca5e890d87cf55e555249c086bd56ae1fff69599174ca0075379";
|
||||
};
|
||||
buildInputs = [ pkgconfig libxml2 gnutls libproxy sqlite curl
|
||||
glib GConf gnome_keyring ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user