about summary refs log tree commit diff
path: root/pkgs/kde/gear/francis/default.nix
blob: 66dd02f7d11299ba8fb5f29b297c6ba88ae0f4ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  mkKdeDerivation,
  fetchpatch,
  qtsvg,
  knotifications,
}:
mkKdeDerivation {
  pname = "francis";

  patches = [
    # Fix linking issue
    # FIXME: remove in next update
    (fetchpatch {
      url = "https://invent.kde.org/utilities/francis/-/commit/4d5407a42e4871d66f4de4522fbbf83c35604550.patch";
      hash = "sha256-p9DVc92e8QBDHwZybVLNzSH8dr0XmRzrnIT45YD9t/Q=";
    })
  ];

  extraBuildInputs = [qtsvg knotifications];
}