54067dd4c4
svn path=/nixpkgs/trunk/; revision=5611
7 lines
148 B
Nix
7 lines
148 B
Nix
{input, stdenv, fetchurl, pkgconfig, libxml2, glib}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
buildInputs = [pkgconfig libxml2 glib];
|
|
}
|