ab3eeabfed
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
17 lines
392 B
Nix
17 lines
392 B
Nix
{ kde, cmake, smokeqt, ruby }:
|
|
|
|
kde {
|
|
buildInputs = [ smokeqt ruby ];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
# The second patch is not ready for upstream submmission. I should add an
|
|
# option() instead.
|
|
patches = [ ./qtruby-include-smokeqt.patch ./qtruby-install-prefix.patch ];
|
|
|
|
cmakeFlags="-DRUBY_ROOT_DIR=${ruby}";
|
|
|
|
meta = {
|
|
description = "Ruby bindings for Qt library";
|
|
};
|
|
}
|