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

stdenv.mkDerivation rec {
  name = "libgnomecanvas-${minVer}.3";
  minVer = "2.30";

  src = fetchurl {
    url = "mirror://gnome/sources/libgnomecanvas/${minVer}/${name}.tar.bz2";
    sha256 = "0h6xvswbqspdifnyh5pm2pqq55yp3kn6yrswq7ay9z49hkh7i6w5";
  };

  buildInputs = [ libglade ];
  nativeBuildInputs = [ pkgconfig intltool ];
  propagatedBuildInputs = [ libart_lgpl gtk ];
}