mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 00:54:40 +00:00
11 lines
221 B
Nix
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
|
|
];
|
|
}
|