summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/libgnomecanvas/default.nix
blob: dd6ebbb91745fe940027ec55ba15619383d2b429 (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 ];
  nativeBuildInputs = [ pkgconfig intltool ];
  propagatedBuildInputs = [ libart_lgpl gtk ];
}