1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/desktops/gnome/gnome-menus.nix
Eelco Dolstra c6db5c80f9 * More Gnome stuff.
svn path=/nixpkgs/trunk/; revision=8190
2007-03-05 18:52:31 +00:00

11 lines
221 B
Nix

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