summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.8/kdebindings/perlqt.nix
blob: 2c1378f10496d07bc05ec674b34c36a7ec16f7a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ kde, cmake, smokeqt, perl }:

kde {
  buildInputs = [ smokeqt perl ];
  buildNativeInputs = [ cmake ];

  patches =
    # The order is important
    [ ./perlqt-include-smokeqt.patch ./perlqt-rewrite-FindPerlMore.patch
      ./perlqt-use-site-arch-install-dir.patch
    ];

  meta = {
    description = "Perl bindings for Qt library";
  };
}