5dde0fead7
* Add some Gnome interdependencies. svn path=/nixpkgs/trunk/; revision=8125
9 lines
220 B
Nix
9 lines
220 B
Nix
{input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, gettext}:
|
|
|
|
assert pkgconfig != null && perl != null;
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
buildInputs = [pkgconfig perl perlXMLParser gettext];
|
|
}
|