telepathy-glib: 0.24.1 -> 0.24.2

Switched to python3 & cleaned up the expression while at it.

https://github.com/TelepathyIM/telepathy-glib/compare/telepathy-glib-0.24.1...telepathy-glib-0.24.2
This commit is contained in:
Jan Tojnar 2021-03-11 16:12:31 +01:00
parent 8f3169ab3d
commit 5285e5b72c
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,24 +1,49 @@
{ lib, stdenv, fetchurl, dbus-glib, glib, python2, pkg-config, libxslt
, gobject-introspection, vala, glibcLocales }:
{ lib
, stdenv
, fetchurl
, dbus-glib
, glib
, python3
, pkg-config
, libxslt
, gobject-introspection
, vala
, glibcLocales
}:
stdenv.mkDerivation rec {
name = "telepathy-glib-0.24.1";
pname = "telepathy-glib";
version = "0.24.2";
outputs = [ "out" "dev" ];
src = fetchurl {
url = "${meta.homepage}/releases/telepathy-glib/${name}.tar.gz";
sha256 = "1symyzbjmxvksn2ifdkk50lafjm2llf2sbmky062gq2pz3cg23cy";
url = "${meta.homepage}/releases/telepathy-glib/${pname}-${version}.tar.gz";
sha256 = "sKN013HN0IESXzjDq9B5ZXZCMBxxpUPVVeK/IZGSc/A=";
};
nativeBuildInputs = [
pkg-config
libxslt
gobject-introspection
vala
];
buildInputs = [
glibcLocales
python3
];
propagatedBuildInputs = [
dbus-glib
glib
];
configureFlags = [
"--enable-vala-bindings"
];
LC_ALL = "en_US.UTF-8";
propagatedBuildInputs = [ dbus-glib glib ];
nativeBuildInputs = [ pkg-config libxslt gobject-introspection vala ];
buildInputs = [ glibcLocales python2 ];
LC_ALL = "en_US.UTF-8";
enableParallelBuilding = true;