about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/gtk-engines/default.nix
blob: 2f56f6eb4c5c05b2e718ce2cd92d095d8844c9f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, pkgconfig, intltool, gtk2 }:

stdenv.mkDerivation {
  name = "gtk-engines-2.20.2";

  src = fetchurl {
    url = "ftp://ftp.gnome.org/pub/gnome/sources/gtk-engines/2.20/gtk-engines-2.20.2.tar.bz2";
    sha256 = "1db65pb0j0mijmswrvpgkdabilqd23x22d95hp5kwxvcramq1dhm";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ intltool gtk2 ];

  meta = {
    description = "Theme engines for GTK 2";
    license = stdenv.lib.licenses.lgpl21Plus;
    platforms = stdenv.lib.platforms.linux;
  };
}