8abd44f249
* Remove a lot of code duplication. * Package almost all (except for smoke-based bindings). svn path=/nixpkgs/trunk/; revision=28597
14 lines
259 B
Nix
14 lines
259 B
Nix
{ kde, qt4, cmake }:
|
|
|
|
kde {
|
|
buildInputs = [ qt4 ];
|
|
buildNativeInputs = [ cmake ];
|
|
|
|
patchPhase = "sed -e /RPATH/d -i CMakeLists.txt";
|
|
|
|
meta = {
|
|
description = "C++ parser used to generate language bindings for Qt/KDE";
|
|
license = "GPLv2";
|
|
};
|
|
}
|