summary refs log tree commit diff
path: root/pkgs/desktops/lxqt
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2017-11-02 00:15:35 -0200
committerJosé Romildo Malaquias <malaquias@gmail.com>2017-11-02 00:15:35 -0200
commit7059004883f8718dc99171f6e49460083d4cec18 (patch)
tree9f267b450a27d13c2f21e68cd74b7581cbd24ddb /pkgs/desktops/lxqt
parentb6d27b72716f7ab221242a5cfd7e1179fd24de26 (diff)
downloadnixpkgs-7059004883f8718dc99171f6e49460083d4cec18.tar
nixpkgs-7059004883f8718dc99171f6e49460083d4cec18.tar.gz
nixpkgs-7059004883f8718dc99171f6e49460083d4cec18.tar.bz2
nixpkgs-7059004883f8718dc99171f6e49460083d4cec18.tar.lz
nixpkgs-7059004883f8718dc99171f6e49460083d4cec18.tar.xz
nixpkgs-7059004883f8718dc99171f6e49460083d4cec18.tar.zst
nixpkgs-7059004883f8718dc99171f6e49460083d4cec18.zip
lxqt: remove lxqt-common
Diffstat (limited to 'pkgs/desktops/lxqt')
-rw-r--r--pkgs/desktops/lxqt/core/lxqt-common/default.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/pkgs/desktops/lxqt/core/lxqt-common/default.nix b/pkgs/desktops/lxqt/core/lxqt-common/default.nix
deleted file mode 100644
index cc114c31dfd..00000000000
--- a/pkgs/desktops/lxqt/core/lxqt-common/default.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ stdenv, fetchFromGitHub, cmake, qt5, lxqt, hicolor_icon_theme, xmessage }:
-
-stdenv.mkDerivation rec {
-  name = "${pname}-${version}";
-  pname = "lxqt-common";
-  version = "0.11.2";
-
-  src = fetchFromGitHub {
-    owner = "lxde";
-    repo = pname;
-    rev = version;
-    sha256 = "07ih2w9ksbxqwy36xvgb9b31740nhkm7ap70wvv8q6x0wyhn71gn";
-  };
-
-  nativeBuildInputs = [
-    cmake
-    lxqt.lxqt-build-tools
-  ];
-
-  buildInputs = [
-    qt5.qtsvg
-    hicolor_icon_theme
-    xmessage
-  ];
-
-  postPatch = lxqt.standardPatch
-  + ''
-    substituteInPlace ./startlxqt.in \
-      --replace  "cp " "cp --no-preserve=mode " \
-      --replace xmessage "${xmessage}"/bin/xmessage
-  '';
-
-  meta = with stdenv.lib; {
-    description = "Common files for LXQt";
-    homepage = https://github.com/lxde/lxqt-common;
-    license = licenses.lgpl21;
-    platforms = with platforms; unix;
-    maintainers = with maintainers; [ romildo ];
-  };
-}