mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 10:56:53 +00:00
18 lines
368 B
Nix
18 lines
368 B
Nix
|
{ 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";
|
||
|
};
|
||
|
}
|