mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
c6db5c80f9
svn path=/nixpkgs/trunk/; revision=8190
11 lines
220 B
Nix
11 lines
220 B
Nix
{ input, stdenv, fetchurl, gnome, pkgconfig, perl, perlXMLParser, popt
|
|
, gettext
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
|
|
buildInputs = [
|
|
pkgconfig perl perlXMLParser gnome.glib popt gettext
|
|
];
|
|
}
|