mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
ec3965d8d0
See #490 discussion. This reverts commit1278859d31
, reversing changes made to0c020c98f9
. Conflicts: pkgs/desktops/xfce/core/xfce4-session.nix (take master) pkgs/lib/misc.nix (auto)
14 lines
508 B
Nix
14 lines
508 B
Nix
{ 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 ];
|
|
}
|