mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03: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
|
||
|
];
|
||
|
}
|