forked from mirrors/nixpkgs
plasma5Packages.sonnet: fix determinism (pull upstream patch)
This commit is contained in:
parent
0bb8cb9c7a
commit
0ac3f8a36c
|
@ -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 ];
|
||||
|
|
Loading…
Reference in a new issue