nixpkgs/pkgs/desktops/gnome/libsoup/default.nix
Eelco Dolstra 398768bfb5 * Refactoring: move KDE and Gnome out of development/libraries into
desktops.

svn path=/nixpkgs/trunk/; revision=8105
2007-02-28 16:18:58 +00:00

7 lines
148 B
Nix

{input, stdenv, fetchurl, pkgconfig, libxml2, glib}:
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [pkgconfig libxml2 glib];
}