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

assert pkgconfig != null && gtk != null && libart != null
  && libglade != null;

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