7 lines
160 B
Nix
7 lines
160 B
Nix
|
{input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
inherit (input) name src;
|
||
|
buildInputs = [pkgconfig perl perlXMLParser];
|
||
|
}
|