nixpkgs/pkgs/desktops/lxde/core/lxappearance/default.nix

43 lines
871 B
Nix
Raw Normal View History

{ stdenv
, fetchurl
, intltool
, pkg-config
, libX11
, gtk2
, gtk3
, withGtk3 ? true
}:
stdenv.mkDerivation rec {
2017-02-16 13:31:42 +00:00
name = "lxappearance-0.6.3";
2016-09-20 02:25:05 +01:00
src = fetchurl {
url = "mirror://sourceforge/project/lxde/LXAppearance/${name}.tar.xz";
2017-02-16 13:31:42 +00:00
sha256 = "0f4bjaamfxxdr9civvy55pa6vv9dx1hjs522gjbbgx7yp1cdh8kj";
};
2016-09-20 02:25:05 +01:00
nativeBuildInputs = [
pkg-config
intltool
];
2016-09-20 02:25:05 +01:00
buildInputs = [
libX11
(if withGtk3 then gtk3 else gtk2)
];
patches = [
./lxappearance-0.6.3-xdg.system.data.dirs.patch
];
configureFlags = stdenv.lib.optional withGtk3 "--enable-gtk3";
2016-09-20 02:25:05 +01:00
meta = with stdenv.lib; {
description = "Lightweight program for configuring the theme and fonts of gtk applications";
homepage = "https://lxde.org/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ hinton romildo ];
};
}