about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/kde-frameworks/sonnet.nix
blob: 8647c8e0712c70bb07eab8a85c25dcdbed7e13c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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 ];
}