mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
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];
|
|
}
|