mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-02 17:09:09 +03:00
83ca1bec30
Several packages referred to /etc/ca-bundle.crt, that
was removed in 9c616e3
. I've changed those references to
/etc/ssl/certs/ca-bundle.crt instead.
21 lines
612 B
Nix
21 lines
612 B
Nix
{ stdenv, fetchurl, pkgconfig, libxslt, telepathy_glib, libxml2, dbus_glib
|
|
, sqlite, libsoup, libnice, gnutls }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "telepathy-gabble-0.17.2";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/releases/telepathy-gabble/${name}.tar.gz";
|
|
sha256 = "137sslbgh0326lmwihcr2ybljgq9mzsx5wnciilpx884si22wpk8";
|
|
};
|
|
|
|
nativeBuildInputs = [pkgconfig libxslt];
|
|
buildInputs = [ libxml2 dbus_glib sqlite libsoup libnice telepathy_glib gnutls ];
|
|
|
|
configureFlags = "--with-ca-certificates=/etc/ssl/certs/ca-bundle.crt";
|
|
|
|
meta = {
|
|
homepage = http://telepathy.freedesktop.org;
|
|
};
|
|
}
|