summary refs log tree commit diff
path: root/pkgs/desktops/lxqt/core/lxqt-l10n/default.nix
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2018-09-10 18:00:14 -0300
committerxeji <36407913+xeji@users.noreply.github.com>2018-09-10 23:00:14 +0200
commit2047e28c7fe94a8541f19ac2c57cf4866a318c57 (patch)
tree5a4d8bd21ef7194b566e62807bc51b6b2ff25241 /pkgs/desktops/lxqt/core/lxqt-l10n/default.nix
parentf0839455e9637b4baeb34c245cfabb691a239481 (diff)
downloadnixlib-2047e28c7fe94a8541f19ac2c57cf4866a318c57.tar
nixlib-2047e28c7fe94a8541f19ac2c57cf4866a318c57.tar.gz
nixlib-2047e28c7fe94a8541f19ac2c57cf4866a318c57.tar.bz2
nixlib-2047e28c7fe94a8541f19ac2c57cf4866a318c57.tar.lz
nixlib-2047e28c7fe94a8541f19ac2c57cf4866a318c57.tar.xz
nixlib-2047e28c7fe94a8541f19ac2c57cf4866a318c57.tar.zst
nixlib-2047e28c7fe94a8541f19ac2c57cf4866a318c57.zip
lxqt: mv contents of base, core and optional to parent directory (#46484)
Diffstat (limited to 'pkgs/desktops/lxqt/core/lxqt-l10n/default.nix')
-rw-r--r--pkgs/desktops/lxqt/core/lxqt-l10n/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/desktops/lxqt/core/lxqt-l10n/default.nix b/pkgs/desktops/lxqt/core/lxqt-l10n/default.nix
deleted file mode 100644
index 9a79ec16df09..000000000000
--- a/pkgs/desktops/lxqt/core/lxqt-l10n/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv, fetchFromGitHub, cmake, qt5, lxqt }:
-
-stdenv.mkDerivation rec {
-  name = "lxqt-l10n-${version}";
-  version = "0.13.0";
-
-  src = fetchFromGitHub {
-    owner = "lxqt";
-    repo = "lxqt-l10n";
-    rev = version;
-    sha256 = "0q1hzj6sa4wc8sgqqqsqfldjpnvihacfq73agvc2li3q6qi5rr0k";
-  };
-
-  nativeBuildInputs = [
-    cmake
-    qt5.qttools
-    lxqt.lxqt-build-tools
-  ];
-
-  postPatch = ''
-    substituteInPlace CMakeLists.txt \
-      --replace "\''${LXQT_TRANSLATIONS_DIR}" "$out"/share/lxqt/translations
-  '';
-  
-  meta = with stdenv.lib; {
-    description = "Translations of LXQt";
-    homepage = https://github.com/lxqt/lxqt-l10n;
-    license = licenses.lgpl21Plus;
-    platforms = with platforms; unix;
-    maintainers = with maintainers; [ romildo ];
-  };
-}