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

kde {
#todo: qscintilla2, qwt5
  buildInputs = [ smokeqt perl ];
  nativeBuildInputs = [ 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";
  };
}