Gnome3: add libqmi-1.0

This commit is contained in:
Rob Vermaas 2014-01-11 12:35:48 +01:00
parent 4ade852707
commit 0657498c6f
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ stdenv, fetchurl, pkgconfig, glib, python }:
stdenv.mkDerivation rec {
name = "libqmi-1.0";
src = fetchurl {
url = "http://ftp.acc.umu.se/pub/GNOME/core/3.10/3.10.2/sources/${name}.tar.xz";
sha256 = "0w4cd7nihp73frh3sfi13fx0rkwmd581xpil54bsjc7pw7z01bd1";
};
buildInputs = [ pkgconfig glib python ];
meta = with stdenv.lib; {
platforms = platforms.linux;
};
}

View File

@ -51,6 +51,8 @@ rec {
libpeas = callPackage ./core/libpeas {};
libqmi = callPackage ./core/libqmi {};
libgweather = callPackage ./core/libgweather { libsoup = pkgs.libsoup_2_44; };
nautilus = callPackage ./core/nautilus { };