summary refs log tree commit diff
path: root/pkgs/desktops/gnome/gnome-doc-utils.nix
blob: 47d211be0cbcabbc65a8915509298151945ee490 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, python
, libxml2, libxslt, gettext
}:

stdenv.mkDerivation {
  inherit (input) name src;
  
  buildInputs = [
    pkgconfig perl perlXMLParser python
    libxml2 libxslt gettext
  ];

  configureFlags = "--disable-scrollkeeper";
}