260e13ddeb
svn path=/nixpkgs/trunk/; revision=15849
9 lines
203 B
Nix
9 lines
203 B
Nix
{input, stdenv, fetchurl, pkgconfig, libxml2, glib
|
|
, libproxy, GConf, sqlite}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
buildInputs = [pkgconfig libxml2 glib libproxy
|
|
GConf sqlite];
|
|
}
|