nixpkgs/pkgs/desktops/gnome-2.28/desktop/libgweather/default.nix
Lluís Batlle i Rossell 57c012a16c Attempt at adding 'pinta'. It still does not build due to mono problems.
Nevertheless, I updated the gnome attribute names a bit so all that
gtk-sharp-2 goes a bit beyond.

svn path=/nixpkgs/trunk/; revision=22287
2010-06-15 22:25:38 +00:00

14 lines
480 B
Nix

{stdenv, fetchurl, pkgconfig, libxml2, gtk, intltool, GConf, libsoup, libtasn1}:
assert stdenv ? glibc;
stdenv.mkDerivation {
name = "libgweather-2.28.0";
src = fetchurl {
url = mirror://gnome/sources/libgweather/2.28/libgweather-2.28.0.tar.bz2;
sha256 = "0m4ncqzf13037zvyihydif1asgp6pnzdkmx5qnmffzb1gd6qxzb5";
};
configureFlags = "--with-zoneinfo-dir=${stdenv.glibc}/share/zoneinfo";
buildInputs = [ pkgconfig libxml2 gtk intltool GConf libsoup libtasn1 ];
}