summary refs log tree commit diff
path: root/pkgs/desktops/gnome/gnome-menus.nix
blob: 66cea23f6ca74e1185d6856483ce25b28020cbd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ input, stdenv, fetchurl, gnome, pkgconfig, perl, perlXMLParser
, python, gettext
}:

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