summary refs log tree commit diff
path: root/pkgs/development/libraries/libgweather
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-02-01 02:46:04 +0100
committerVladimír Čunát <vcunat@gmail.com>2013-02-21 21:26:19 +0100
commit4e5fe00a1f29fd17b1a8caf0b3315dd1576ef634 (patch)
tree9a5ee174423a8394b21eb3b04bfc9ccbbf71197c /pkgs/development/libraries/libgweather
parentdd4a846b0f0236bf9094518b252eb5931c391f67 (diff)
downloadnixpkgs-4e5fe00a1f29fd17b1a8caf0b3315dd1576ef634.tar
nixpkgs-4e5fe00a1f29fd17b1a8caf0b3315dd1576ef634.tar.gz
nixpkgs-4e5fe00a1f29fd17b1a8caf0b3315dd1576ef634.tar.bz2
nixpkgs-4e5fe00a1f29fd17b1a8caf0b3315dd1576ef634.tar.lz
nixpkgs-4e5fe00a1f29fd17b1a8caf0b3315dd1576ef634.tar.xz
nixpkgs-4e5fe00a1f29fd17b1a8caf0b3315dd1576ef634.tar.zst
nixpkgs-4e5fe00a1f29fd17b1a8caf0b3315dd1576ef634.zip
gnome3.libgweather: update
Diffstat (limited to 'pkgs/development/libraries/libgweather')
-rw-r--r--pkgs/development/libraries/libgweather/default.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/pkgs/development/libraries/libgweather/default.nix b/pkgs/development/libraries/libgweather/default.nix
deleted file mode 100644
index 5e7a4cff741..00000000000
--- a/pkgs/development/libraries/libgweather/default.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ 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 ];
-  nativeBuildInputs = [ pkgconfig intltool ];
-}