about summary refs log tree commit diff
path: root/pkgs/desktops/lxde/core/lxappearance/default.nix
blob: b6b63e316152ddb14f2b90e986ec36f4b98702a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, intltool, pkgconfig, libX11, gtk2 }:

stdenv.mkDerivation rec {
  name = "lxappearance-0.6.3";

  src = fetchurl{
    url = "mirror://sourceforge/project/lxde/LXAppearance/${name}.tar.xz";
    sha256 = "0f4bjaamfxxdr9civvy55pa6vv9dx1hjs522gjbbgx7yp1cdh8kj";
  };

  nativeBuildInputs = [ pkgconfig intltool ];

  buildInputs = [ libX11 gtk2 ];

  meta = {
    description = "A lightweight program for configuring the theme and fonts of gtk applications";
    homepage = "http://lxde.org/";
    maintainers = [ stdenv.lib.maintainers.hinton ];
    platforms = stdenv.lib.platforms.all;
    license = stdenv.lib.licenses.gpl2;
  };
}