Unverified Commit 7d5856e1 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

fcitx5: fix and enable strictDeps (#361689)

parents 9dfdaf6c 9737c6a6
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@
, xcb-imdkit
, libxkbfile
, nixosTests
, gettext
}:
let
  enDictVer = "20121020";
@@ -62,9 +63,11 @@ stdenv.mkDerivation rec {
    extra-cmake-modules
    pkg-config
    wayland-scanner
    gettext
  ];

  buildInputs = [
    extra-cmake-modules # required to please CMake
    expat
    fmt
    isocodes
@@ -94,6 +97,8 @@ stdenv.mkDerivation rec {
    libxkbfile
  ];

  strictDeps = true;

  passthru = {
    updateScript = ./update.py;
    tests = {
+1 −1
Original line number Diff line number Diff line
@@ -23,13 +23,13 @@ stdenv.mkDerivation rec {
  nativeBuildInputs = [
    cmake
    extra-cmake-modules
    gettext # msgfmt
    pkg-config
    zstd
  ];
  buildInputs = [
    fcitx5
    anthy
    gettext
  ];

  meta = with lib; {
+3 −1
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@
  cmake,
  extra-cmake-modules,
  boost,
  gettext,
  libime,
  fcitx5,
  fcitx5-qt,
@@ -45,7 +46,7 @@ stdenv.mkDerivation rec {
  nativeBuildInputs = [
    cmake
    extra-cmake-modules
    boost
    gettext
    fcitx5-lua
  ];

@@ -55,6 +56,7 @@ stdenv.mkDerivation rec {
  '';

  buildInputs = [
    boost
    fcitx5
    fcitx5-qt
    libime
+1 −1
Original line number Diff line number Diff line
@@ -22,12 +22,12 @@ stdenv.mkDerivation rec {
  nativeBuildInputs = [
    cmake
    extra-cmake-modules
    gettext
  ];

  buildInputs = [
    fcitx5
    lua
    gettext
  ];

  passthru = {
+2 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
  cmake,
  extra-cmake-modules,
  fcitx5,
  gettext,
  qtbase,
  qtwayland,
  wrapQtAppsHook,
@@ -39,6 +40,7 @@ stdenv.mkDerivation rec {
  nativeBuildInputs = [
    cmake
    extra-cmake-modules
    gettext
    wrapQtAppsHook
  ];

Loading