about summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2016-09-19 20:33:18 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2016-09-19 22:26:10 -0300
commit18e696e97b5815fb96ffe18a9ea03a924685a3b1 (patch)
tree8f64d3e7f31bfe829ef0540f2d140b02ec96fd27 /pkgs/desktops
parente453c62885324cc84f41e73ce8dec551cc21094d (diff)
downloadnixlib-18e696e97b5815fb96ffe18a9ea03a924685a3b1.tar
nixlib-18e696e97b5815fb96ffe18a9ea03a924685a3b1.tar.gz
nixlib-18e696e97b5815fb96ffe18a9ea03a924685a3b1.tar.bz2
nixlib-18e696e97b5815fb96ffe18a9ea03a924685a3b1.tar.lz
nixlib-18e696e97b5815fb96ffe18a9ea03a924685a3b1.tar.xz
nixlib-18e696e97b5815fb96ffe18a9ea03a924685a3b1.tar.zst
nixlib-18e696e97b5815fb96ffe18a9ea03a924685a3b1.zip
lxappearance: move from pkgs/applications/misc/ to pkgs/desktops/lxde/core/
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/lxde/core/lxappearance/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/desktops/lxde/core/lxappearance/default.nix b/pkgs/desktops/lxde/core/lxappearance/default.nix
new file mode 100644
index 000000000000..8683d5b3cea5
--- /dev/null
+++ b/pkgs/desktops/lxde/core/lxappearance/default.nix
@@ -0,0 +1,17 @@
+{ stdenv, fetchurl, intltool, pkgconfig, libX11, gtk2 }:
+
+stdenv.mkDerivation rec {
+  name = "lxappearance-0.6.1";
+  src = fetchurl{
+    url = "mirror://sourceforge/project/lxde/LXAppearance/${name}.tar.xz";
+    sha256 = "1phnv1b2jdj2vlibjyc9z01izcf3k5zxj8glsaf0i3vh77zqmqq9";
+  };
+  buildInputs = [ intltool libX11 pkgconfig gtk2 ];
+  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/";
+  };
+}