9dcf8dffa2
I had to patch their buildsystem. I'm going to submit the patches upstream next week. svn path=/nixpkgs/trunk/; revision=33309
17 lines
343 B
Nix
17 lines
343 B
Nix
{ 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";
|
|
};
|
|
}
|