mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
loudmouth: Fix building with the latest glib
http://hydra.nixos.org/build/3148780
This commit is contained in:
parent
b713d13bb4
commit
f81a86d4b9
@ -1,16 +1,22 @@
|
||||
{stdenv, fetchurl, openssl, libidn, glib, pkgconfig, zlib}:
|
||||
{ stdenv, fetchurl, openssl, libidn, glib, pkgconfig, zlib }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
name = "loudmouth-1.4.3";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://gnome/sources/loudmouth/1.4/loudmouth-1.4.3.tar.bz2;
|
||||
url = "mirror://gnome/sources/loudmouth/1.4/${name}.tar.bz2";
|
||||
md5 = "55339ca42494690c3942ee1465a96937";
|
||||
};
|
||||
|
||||
|
||||
patches = [ ./glib-2.32.patch ];
|
||||
|
||||
configureFlags = "--with-ssl=openssl";
|
||||
|
||||
propagatedBuildInputs = [openssl libidn glib zlib];
|
||||
|
||||
buildInputs = [pkgconfig];
|
||||
|
||||
propagatedBuildInputs = [ openssl libidn glib zlib ];
|
||||
|
||||
buildInputs = [ pkgconfig ];
|
||||
|
||||
meta = {
|
||||
description = "A lightweight C library for the Jabber protocol";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user