nixpkgs/pkgs/desktops/gnome/libsoup.nix

7 lines
148 B
Nix
Raw Normal View History

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