mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
3d98c0bf14
svn path=/nixpkgs/trunk/; revision=8107
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];
|
|
}
|