nixpkgs/pkgs/desktops/gnome/libglade.nix

10 lines
236 B
Nix
Raw Normal View History

{input, stdenv, fetchurl, pkgconfig, gtk, libxml2}:
assert pkgconfig != null && gtk != null && libxml2 != null;
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [pkgconfig];
propagatedBuildInputs = [gtk libxml2];
}