Merge pull request #141463 from trofi/fix-sonnet-determinism

plasma5Packages.sonnet: make the build deterministic

authored by Thomas Tuegel and committed by GitHub 13f34aa8 260ccf16

+8
+8
pkgs/development/libraries/kde-frameworks/sonnet.nix
··· 1 1 { mkDerivation 2 + , fetchpatch 2 3 , extra-cmake-modules 3 4 , aspell, qtbase, qttools 4 5 }: 5 6 6 7 mkDerivation { 7 8 name = "sonnet"; 9 + patches = [ 10 + # Pull upstream path to fix determinism. 11 + (fetchpatch { 12 + url = "https://invent.kde.org/frameworks/sonnet/-/commit/a01fc66b8affb01221d1fdf84146a78c172d4c6b.patch"; 13 + sha256 = "1jzd65rmgvfpcxrsnsmdz8ac1ldqs9rjfryy8fryy0ibzbhc1050"; 14 + }) 15 + ]; 8 16 nativeBuildInputs = [ extra-cmake-modules ]; 9 17 buildInputs = [ aspell qttools ]; 10 18 propagatedBuildInputs = [ qtbase ];