lol

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

+34 -9
+34 -9
pkgs/development/libraries/telepathy/glib/default.nix
··· 1 - { lib, stdenv, fetchurl, dbus-glib, glib, python2, pkg-config, libxslt 2 - , gobject-introspection, vala, glibcLocales }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , dbus-glib 5 + , glib 6 + , python3 7 + , pkg-config 8 + , libxslt 9 + , gobject-introspection 10 + , vala 11 + , glibcLocales 12 + }: 3 13 4 14 stdenv.mkDerivation rec { 5 - name = "telepathy-glib-0.24.1"; 15 + pname = "telepathy-glib"; 16 + version = "0.24.2"; 6 17 7 18 outputs = [ "out" "dev" ]; 8 19 9 20 src = fetchurl { 10 - url = "${meta.homepage}/releases/telepathy-glib/${name}.tar.gz"; 11 - sha256 = "1symyzbjmxvksn2ifdkk50lafjm2llf2sbmky062gq2pz3cg23cy"; 21 + url = "${meta.homepage}/releases/telepathy-glib/${pname}-${version}.tar.gz"; 22 + sha256 = "sKN013HN0IESXzjDq9B5ZXZCMBxxpUPVVeK/IZGSc/A="; 12 23 }; 13 24 25 + nativeBuildInputs = [ 26 + pkg-config 27 + libxslt 28 + gobject-introspection 29 + vala 30 + ]; 31 + 32 + buildInputs = [ 33 + glibcLocales 34 + python3 35 + ]; 36 + 37 + propagatedBuildInputs = [ 38 + dbus-glib 39 + glib 40 + ]; 41 + 14 42 configureFlags = [ 15 43 "--enable-vala-bindings" 16 44 ]; 45 + 17 46 LC_ALL = "en_US.UTF-8"; 18 - propagatedBuildInputs = [ dbus-glib glib ]; 19 - 20 - nativeBuildInputs = [ pkg-config libxslt gobject-introspection vala ]; 21 - buildInputs = [ glibcLocales python2 ]; 22 47 23 48 enableParallelBuilding = true; 24 49