summary refs log tree commit diff
path: root/pkgs/desktops/gnome/libglade.nix
blob: 2719379359c8267be07e3aafe8ae53a62c4cb24b (plain) (blame)
1
2
3
4
5
6
7
8
9
{input, stdenv, fetchurl, pkgconfig, gtk, libxml2}:

assert pkgconfig != null && gtk != null && libxml2 != null;

stdenv.mkDerivation {
  inherit (input) name src;
  buildInputs = [pkgconfig];
  propagatedBuildInputs = [gtk libxml2];
}