about summary refs log tree commit diff
path: root/pkgs/applications
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/applications
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/applications')
-rw-r--r--pkgs/applications/misc/lxappearance/default.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/applications/misc/lxappearance/default.nix b/pkgs/applications/misc/lxappearance/default.nix
deleted file mode 100644
index 8683d5b3cea5..000000000000
--- a/pkgs/applications/misc/lxappearance/default.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ 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/";
-  };
-}