Add libgweather
svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33344
This commit is contained in:
parent
268146472c
commit
c4b9da5949
2 changed files with 15 additions and 0 deletions
13
pkgs/development/libraries/libgweather/default.nix
Normal file
13
pkgs/development/libraries/libgweather/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ stdenv, fetchurl, pkgconfig, libxml2, gtk3, intltool, libsoup, GConf3 }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libgweather-3.4.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://gnome/sources/libgweather/3.4/libgweather-3.4.1.tar.xz;
|
||||
sha256 = "0q0vkggrbvy2ihwcsfynlv5qk9l3wjinls8yvmkb1qisyc4lv77f";
|
||||
};
|
||||
configureFlags = if stdenv ? glibc then "--with-zoneinfo-dir=${stdenv.glibc}/share/zoneinfo" else "";
|
||||
propagatedBuildInputs = [ libxml2 gtk3 libsoup GConf3 ];
|
||||
buildNativeInputs = [ pkgconfig intltool ];
|
||||
}
|
|
@ -3980,6 +3980,8 @@ let
|
|||
|
||||
libgtop = callPackage ../development/libraries/libgtop {};
|
||||
|
||||
libgweather = callPackage ../development/libraries/libgweather {};
|
||||
|
||||
liblo = callPackage ../development/libraries/liblo { };
|
||||
|
||||
liblrdf = callPackage ../development/libraries/liblrdf {};
|
||||
|
|
Loading…
Reference in a new issue