summary refs log tree commit diff
path: root/pkgs/development/libraries/libgweather
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-22 08:39:08 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-22 08:39:08 +0000
commitc4b9da59498b9ae639ceb29588db5e8615748d95 (patch)
treeae6cd372a70493a6ad55b8bcdbfe02a560f6bba5 /pkgs/development/libraries/libgweather
parent268146472c31a4ab1fea8e84d66124b8787ef3e1 (diff)
downloadnixpkgs-c4b9da59498b9ae639ceb29588db5e8615748d95.tar
nixpkgs-c4b9da59498b9ae639ceb29588db5e8615748d95.tar.gz
nixpkgs-c4b9da59498b9ae639ceb29588db5e8615748d95.tar.bz2
nixpkgs-c4b9da59498b9ae639ceb29588db5e8615748d95.tar.lz
nixpkgs-c4b9da59498b9ae639ceb29588db5e8615748d95.tar.xz
nixpkgs-c4b9da59498b9ae639ceb29588db5e8615748d95.tar.zst
nixpkgs-c4b9da59498b9ae639ceb29588db5e8615748d95.zip
Add libgweather
svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33344
Diffstat (limited to 'pkgs/development/libraries/libgweather')
-rw-r--r--pkgs/development/libraries/libgweather/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libgweather/default.nix b/pkgs/development/libraries/libgweather/default.nix
new file mode 100644
index 00000000000..4a4da810ae6
--- /dev/null
+++ b/pkgs/development/libraries/libgweather/default.nix
@@ -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 ];
+}