mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
lxqt: lxqt-l10n has been removed in version 0.14.0
This commit is contained in:
parent
1fa2405cbd
commit
9306341a0b
@ -18,7 +18,6 @@ let
|
|||||||
lxqt-admin = callPackage ./lxqt-admin { };
|
lxqt-admin = callPackage ./lxqt-admin { };
|
||||||
lxqt-config = callPackage ./lxqt-config { };
|
lxqt-config = callPackage ./lxqt-config { };
|
||||||
lxqt-globalkeys = callPackage ./lxqt-globalkeys { };
|
lxqt-globalkeys = callPackage ./lxqt-globalkeys { };
|
||||||
lxqt-l10n = callPackage ./lxqt-l10n { };
|
|
||||||
lxqt-notificationd = callPackage ./lxqt-notificationd { };
|
lxqt-notificationd = callPackage ./lxqt-notificationd { };
|
||||||
lxqt-openssh-askpass = callPackage ./lxqt-openssh-askpass { };
|
lxqt-openssh-askpass = callPackage ./lxqt-openssh-askpass { };
|
||||||
lxqt-policykit = callPackage ./lxqt-policykit { };
|
lxqt-policykit = callPackage ./lxqt-policykit { };
|
||||||
@ -70,7 +69,6 @@ let
|
|||||||
lxqt-admin
|
lxqt-admin
|
||||||
lxqt-config
|
lxqt-config
|
||||||
lxqt-globalkeys
|
lxqt-globalkeys
|
||||||
lxqt-l10n
|
|
||||||
lxqt-notificationd
|
lxqt-notificationd
|
||||||
lxqt-openssh-askpass
|
lxqt-openssh-askpass
|
||||||
lxqt-policykit
|
lxqt-policykit
|
||||||
|
@ -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 ];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user