summary refs log tree commit diff
path: root/pkgs/desktops/gnome/gnome-desktop.nix
blob: 7aeae28e74f2c05a256db2feac9d33f756fcc094 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ input, stdenv, fetchurl, gnome, pkgconfig, perl, perlXMLParser
, libjpeg, gettext, which, python, libxml2Python, libxslt
}:

# !!! should get rid of libxml2Python, see gnomedocutils

stdenv.mkDerivation {
  inherit (input) name src;
  
  buildInputs = [
    pkgconfig perl perlXMLParser gnome.gtk gnome.glib gnome.libgnomeui
    gnome.scrollkeeper libjpeg gnome.gnomedocutils gettext which
    python libxml2Python libxslt    
  ];

  configureFlags = "--disable-scrollkeeper";
}