1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/desktops/gnome-2/desktop/libgweather/default.nix
Peter Simons 75c5fc541d pkgs/desktops/gnome-2/desktop/libgweather: remove dubious assertion
Fix assertion failure from http://hydra.nixos.org/build/5985506/nixlog/1/raw
for some suitable definition of "fixing". Let's see what happens now.
2013-09-15 21:36:18 +02:00

12 lines
475 B
Nix

{stdenv, fetchurl, pkgconfig, libxml2, gtk, intltool, GConf, libsoup, libtasn1, nettle, gmp}:
stdenv.mkDerivation rec {
name = "libgweather-2.30.3";
src = fetchurl {
url = "mirror://gnome/sources/libgweather/2.30/${name}.tar.bz2";
sha256 = "0k16lpdyy8as8wgc5dqpy5b8i9i4mrl77qx8db23fgs2c533fddq";
};
configureFlags = "--with-zoneinfo-dir=${stdenv.glibc}/share/zoneinfo";
buildInputs = [ pkgconfig libxml2 gtk intltool GConf libsoup libtasn1 nettle gmp ];
}