nixpkgs/pkgs/desktops/gnome/libglade.nix
Eelco Dolstra 3d98c0bf14 * Get rid of all those pointless little directories.
svn path=/nixpkgs/trunk/; revision=8107
2007-02-28 16:38:39 +00:00

10 lines
236 B
Nix

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