summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/libgnomecanvas/default.nix
blob: bf2c0360aa21b45f0be09ab40bcf8e875c64c67d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, fetchurl_gnome, pkgconfig, gtk, intltool, libart_lgpl, libglade }:

stdenv.mkDerivation rec {
  name = src.pkgname;
  
  src = fetchurl_gnome {
    project = "libgnomecanvas";
    major = "2"; minor = "30"; patchlevel = "3";
    sha256 = "0h6xvswbqspdifnyh5pm2pqq55yp3kn6yrswq7ay9z49hkh7i6w5";
  };
  
  buildInputs = [ libglade ];
  buildNativeInputs = [ pkgconfig intltool ];
  propagatedBuildInputs = [ libart_lgpl gtk ];
}