51ce4ea2f7
to 2.8.3. * development/libraries/gnome/*: copied gtk packages to gnome directory. gnome 2.8.3 did not work on gtk 2.4 nor gtk 2.6. Using the specific version of the gnome platform 2.8.3 directory 'solved' the issue. * development/libraries/gnome/gnome-icon-theme: new packag * development/libraries/gnome/libgtkhtml: new package * development/libraries/gnome/gtkhtml: new package * development/libraries/gnome/libgnomeprint: new package * development/libraries/gnome/libgnomeprintui: new package * development/libraries/gnome/gnome-keyring: new package * development/libraries/gnome/gail: new package * applications/editors/monodoc: new package svn path=/nixpkgs/trunk/; revision=2312
14 lines
409 B
Nix
14 lines
409 B
Nix
{input, stdenv, fetchurl, pkgconfig, perl, glib, gtk, libxml2, ORBit2, popt}:
|
|
|
|
assert pkgconfig != null && perl != null
|
|
&& glib != null && gtk != null
|
|
&& libxml2 != null && ORBit2 != null && popt != null;
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
|
|
# Perl is not `supposed' to be required, but it is.
|
|
buildInputs = [pkgconfig perl glib gtk libxml2 popt];
|
|
propagatedBuildInputs = [ORBit2];
|
|
}
|