about summary refs log tree commit diff
path: root/pkgs/kde/gear/francis/default.nix
blob: ae319e30209db2e2f8da742016c91138c12c698e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  mkKdeDerivation,
  fetchpatch,
  qtsvg,
}:
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];
}