3
0
Fork 0
forked from mirrors/nixpkgs

plasma5Packages.sonnet: fix determinism (pull upstream patch)

This commit is contained in:
Sergei Trofimovich 2021-10-13 07:52:48 +01:00
parent 0bb8cb9c7a
commit 0ac3f8a36c

View file

@ -1,10 +1,18 @@
{ mkDerivation
, fetchpatch
, extra-cmake-modules
, aspell, qtbase, qttools
}:
mkDerivation {
name = "sonnet";
patches = [
# Pull upstream path to fix determinism.
(fetchpatch {
url = "https://invent.kde.org/frameworks/sonnet/-/commit/a01fc66b8affb01221d1fdf84146a78c172d4c6b.patch";
sha256 = "1jzd65rmgvfpcxrsnsmdz8ac1ldqs9rjfryy8fryy0ibzbhc1050";
})
];
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ aspell qttools ];
propagatedBuildInputs = [ qtbase ];