2016-09-11 23:24:51 +02:00
|
|
|
{ stdenv, fetchurl, intltool, pkgconfig, libX11, gtk2 }:
|
2014-02-19 16:38:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-09-20 03:25:05 +02:00
|
|
|
name = "lxappearance-0.6.2";
|
|
|
|
|
2014-02-19 16:38:44 +01:00
|
|
|
src = fetchurl{
|
2016-02-28 13:07:42 +01:00
|
|
|
url = "mirror://sourceforge/project/lxde/LXAppearance/${name}.tar.xz";
|
2016-09-20 03:25:05 +02:00
|
|
|
sha256 = "07r0xbi6504zjnbpan7zrn7gi4j0kbsqqfpj8v2x94gr05p16qj4";
|
2014-02-19 16:38:44 +01:00
|
|
|
};
|
2016-09-20 03:25:05 +02:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
|
|
|
|
buildInputs = [ libX11 gtk2 ];
|
|
|
|
|
2014-02-19 16:38:44 +01:00
|
|
|
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;
|
2016-09-20 03:25:05 +02:00
|
|
|
homepage = "http://lxde.org/";
|
2014-02-19 16:38:44 +01:00
|
|
|
};
|
|
|
|
}
|