about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2.28/desktop/gtksourceview/default.nix
blob: 64dbd8e1a6f39324fc02267c46daccbfce7a8f59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, pkgconfig, atk, cairo, glib, gtk, pango, 
  libxml2, perl, intltool, gettext}:

stdenv.mkDerivation {
  name = "gtksourceview-2.9.9";
  src = fetchurl {
    url = mirror://gnome/sources/gtksourceview/2.9/gtksourceview-2.9.9.tar.bz2;
    sha256 = "0d0i586nj8jsqqfcjcvaj0yzc3sid3s1a4y62xr0qbddkbn1wllj";
  };
  buildInputs = [pkgconfig atk cairo glib gtk pango libxml2 perl intltool
    gettext];
}