Merge pull request #226270 from Flakebi/albert

albert: 0.17.6 -> 0.20.13

authored by

José Romildo Malaquias and committed by
GitHub
85fb079d 08acd91f

+12 -15
+2
nixos/doc/manual/release-notes/rl-2305.section.md
··· 255 256 - `fail2ban` has been updated to 1.0.2, which has a few breaking changes compared to 0.11.2 ([changelog for 1.0.1](https://github.com/fail2ban/fail2ban/blob/1.0.1/ChangeLog), [changelog for 1.0.2](https://github.com/fail2ban/fail2ban/blob/1.0.2/ChangeLog)) 257 258 - Calling `makeSetupHook` without passing a `name` argument is deprecated. 259 260 - Top-level buildPlatform,hostPlatform,targetPlatform have been deprecated, use stdenv.X instead.
··· 255 256 - `fail2ban` has been updated to 1.0.2, which has a few breaking changes compared to 0.11.2 ([changelog for 1.0.1](https://github.com/fail2ban/fail2ban/blob/1.0.1/ChangeLog), [changelog for 1.0.2](https://github.com/fail2ban/fail2ban/blob/1.0.2/ChangeLog)) 257 258 + - `albert` has been updated from 0.17.6 to 0.20.13, and 0.18.0 changed the config format and many plugins ([changelog for 0.18.0](https://github.com/albertlauncher/albert/blob/v0.18.0/CHANGELOG.md)) 259 + 260 - Calling `makeSetupHook` without passing a `name` argument is deprecated. 261 262 - Top-level buildPlatform,hostPlatform,targetPlatform have been deprecated, use stdenv.X instead.
+9 -14
pkgs/applications/misc/albert/default.nix
··· 2 , stdenv 3 , fetchFromGitHub 4 , cmake 5 , muparser 6 - , python3 7 , qtbase 8 - , qtcharts 9 - , qtdeclarative 10 - , qtgraphicaleffects 11 , qtsvg 12 - , qtx11extras 13 , wrapQtAppsHook 14 , nix-update-script 15 }: 16 17 stdenv.mkDerivation rec { 18 pname = "albert"; 19 - version = "0.17.6"; 20 21 src = fetchFromGitHub { 22 owner = "albertlauncher"; 23 repo = "albert"; 24 rev = "v${version}"; 25 - sha256 = "sha256-nbnywrsKvFG8AkayjnylOKSnn7rRWgNv5zE9DDeOmLw="; 26 fetchSubmodules = true; 27 }; 28 ··· 32 ]; 33 34 buildInputs = [ 35 muparser 36 - python3 37 qtbase 38 - qtcharts 39 - qtdeclarative 40 - qtgraphicaleffects 41 qtsvg 42 - qtx11extras 43 - ]; 44 45 postPatch = '' 46 find -type f -name CMakeLists.txt -exec sed -i {} -e '/INSTALL_RPATH/d' \; 47 48 - sed -i src/app/main.cpp \ 49 -e "/QStringList dirs = {/a QFileInfo(\"$out/lib\").canonicalFilePath()," 50 ''; 51
··· 2 , stdenv 3 , fetchFromGitHub 4 , cmake 5 + , libqalculate 6 , muparser 7 + , python3Packages 8 , qtbase 9 + , qtscxml 10 , qtsvg 11 , wrapQtAppsHook 12 , nix-update-script 13 }: 14 15 stdenv.mkDerivation rec { 16 pname = "albert"; 17 + version = "0.20.13"; 18 19 src = fetchFromGitHub { 20 owner = "albertlauncher"; 21 repo = "albert"; 22 rev = "v${version}"; 23 + sha256 = "sha256-zG6XlFOzSpUSswG4kvKf2lgwUSZkzEVslgQBjzVTLYQ="; 24 fetchSubmodules = true; 25 }; 26 ··· 30 ]; 31 32 buildInputs = [ 33 + libqalculate 34 muparser 35 qtbase 36 + qtscxml 37 qtsvg 38 + ] ++ (with python3Packages; [ python pybind11 ]); 39 40 postPatch = '' 41 find -type f -name CMakeLists.txt -exec sed -i {} -e '/INSTALL_RPATH/d' \; 42 43 + sed -i src/nativepluginprovider.cpp \ 44 -e "/QStringList dirs = {/a QFileInfo(\"$out/lib\").canonicalFilePath()," 45 ''; 46
+1 -1
pkgs/top-level/all-packages.nix
··· 1451 1452 akku = callPackage ../tools/package-management/akku { }; 1453 1454 - albert = libsForQt5.callPackage ../applications/misc/albert { }; 1455 1456 alice-lg = callPackage ../servers/alice-lg{ }; 1457
··· 1451 1452 akku = callPackage ../tools/package-management/akku { }; 1453 1454 + albert = qt6Packages.callPackage ../applications/misc/albert { }; 1455 1456 alice-lg = callPackage ../servers/alice-lg{ }; 1457