ab3eeabfed
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
17 lines
343 B
Nix
17 lines
343 B
Nix
{ kde, cmake, smokeqt, perl }:
|
|
|
|
kde {
|
|
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";
|
|
};
|
|
}
|