syncthingtray: 1.1.2 -> 1.1.3

Move cmake-extra-modules to `nativeBuildInputs`.

authored by

R. RyanTM and committed by
Doron Behar
09481d06 d70c7d23

+10 -5
+10 -5
pkgs/applications/misc/syncthingtray/default.nix
··· 19 }: 20 21 mkDerivation rec { 22 - version = "1.1.2"; 23 pname = "syncthingtray"; 24 25 src = fetchFromGitHub { 26 owner = "Martchus"; 27 repo = "syncthingtray"; 28 rev = "v${version}"; 29 - sha256 = "sha256-I5QhnYp4ga3ERJ3w4qjh5gFFU+S1Htw26vHK/2M8j5s="; 30 }; 31 32 buildInputs = [ qtbase cpp-utilities qtutilities ] 33 ++ lib.optionals webviewSupport [ qtwebengine ] 34 ++ lib.optionals jsSupport [ qtdeclarative ] 35 ++ lib.optionals kioPluginSupport [ kio ] 36 - ++ lib.optionals plasmoidSupport [ extra-cmake-modules plasma-framework ] 37 ; 38 39 - nativeBuildInputs = [ cmake qttools ]; 40 41 # No tests are available by upstream, but we test --help anyway 42 doInstallCheck = true; ··· 56 meta = with lib; { 57 homepage = "https://github.com/Martchus/syncthingtray"; 58 description = "Tray application and Dolphin/Plasma integration for Syncthing"; 59 - license = licenses.gpl2; 60 maintainers = with maintainers; [ doronbehar ]; 61 platforms = platforms.linux; 62 };
··· 19 }: 20 21 mkDerivation rec { 22 + version = "1.1.3"; 23 pname = "syncthingtray"; 24 25 src = fetchFromGitHub { 26 owner = "Martchus"; 27 repo = "syncthingtray"; 28 rev = "v${version}"; 29 + sha256 = "sha256-ovit2XSkxSjcbpqQUv8IzMqfsfItbtXLbx0/Vy0+J0Y="; 30 }; 31 32 buildInputs = [ qtbase cpp-utilities qtutilities ] 33 ++ lib.optionals webviewSupport [ qtwebengine ] 34 ++ lib.optionals jsSupport [ qtdeclarative ] 35 ++ lib.optionals kioPluginSupport [ kio ] 36 + ++ lib.optionals plasmoidSupport [ plasma-framework ] 37 ; 38 39 + nativeBuildInputs = [ 40 + cmake 41 + qttools 42 + ] 43 + ++ lib.optionals plasmoidSupport [ extra-cmake-modules ] 44 + ; 45 46 # No tests are available by upstream, but we test --help anyway 47 doInstallCheck = true; ··· 61 meta = with lib; { 62 homepage = "https://github.com/Martchus/syncthingtray"; 63 description = "Tray application and Dolphin/Plasma integration for Syncthing"; 64 + license = licenses.gpl2Plus; 65 maintainers = with maintainers; [ doronbehar ]; 66 platforms = platforms.linux; 67 };