ab3eeabfed
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
14 lines
259 B
Nix
14 lines
259 B
Nix
{ kde, qt4, cmake }:
|
|
|
|
kde {
|
|
buildInputs = [ qt4 ];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
patchPhase = "sed -e /RPATH/d -i CMakeLists.txt";
|
|
|
|
meta = {
|
|
description = "C++ parser used to generate language bindings for Qt/KDE";
|
|
license = "GPLv2";
|
|
};
|
|
}
|