summary refs log tree commit diff
path: root/pkgs/applications/misc/lxappearance/default.nix
blob: 8db606fd6d59d991ced09e95a13d7b9b4348f431 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl, intltool, pkgconfig, libX11, gtk }:

stdenv.mkDerivation rec {
  name = "lxappearance-0.6.1";
  src = fetchurl{
    url = "http://downloads.sourceforge.net/project/lxde/LXAppearance/${name}.tar.xz";
    sha256 = "1phnv1b2jdj2vlibjyc9z01izcf3k5zxj8glsaf0i3vh77zqmqq9";
  };
  buildInputs = [ intltool libX11 pkgconfig gtk ];
  meta = {
    description = "A lightweight program for configuring the theme and fonts of gtk applications";
    maintainers = [ stdenv.lib.maintainers.hinton ];
    platforms = stdenv.lib.platforms.all;
    license = stdenv.lib.licenses.gpl2;
    homepage = "http://lxappearance.sourceforce.net/";
  };
}