summary refs log tree commit diff
path: root/pkgs/desktops/gnome/libsoup.nix
blob: 099fa990a2d3d0f95a11d8d85862c8cc74c233f3 (plain) (blame)
1
2
3
4
5
6
7
8
{input, stdenv, fetchurl, pkgconfig, libxml2, glib
  , libproxy, GConf, sqlite}:

stdenv.mkDerivation {
  inherit (input) name src;
  buildInputs = [pkgconfig libxml2 glib libproxy 
    GConf sqlite];
}