nixpkgs/pkgs/development/libraries/gnome/libgnome/default.nix
Eelco Dolstra e42507d182 * Move tarballs to catamaran so that we are no longer dependent on a
gazillion different servers.  Resurrected some 25 missing files.

svn path=/nixpkgs/trunk/; revision=2237
2005-02-15 14:44:19 +00:00

22 lines
878 B
Nix

{ stdenv, fetchurl, pkgconfig, perl, glib, gnomevfs, libbonobo
, GConf, popt, zlib }:
assert pkgconfig != null && perl != null && glib != null
&& gnomevfs != null && libbonobo != null && GConf != null
&& popt != null && zlib != null;
# !!! TO CHECK:
# libgnome tries to install stuff into GConf (which fails):
# "WARNING: failed to install schema `/schemas/desktop/gnome/url-handlers/https/need-terminal' locale `is': Failed:
# Failed to create file `/nix/store/14d4fc76451786eba9dea087d56dc719-GConf-2.4.0/etc/gconf/gconf.xml.defaults/%gconf.xml': Permission denied"
stdenv.mkDerivation {
name = "libgnome-2.0.6";
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/libgnome-2.4.0.tar.bz2;
md5 = "caec1e12d64b98a2925a4317ac16429f";
};
buildInputs = [pkgconfig perl popt zlib];
propagatedBuildInputs = [glib gnomevfs libbonobo GConf];
}