8abd44f249
* Remove a lot of code duplication. * Package almost all (except for smoke-based bindings). svn path=/nixpkgs/trunk/; revision=28597
13 lines
327 B
Nix
13 lines
327 B
Nix
{ kde, qt4, cmake, phonon, qimageblitz, kdebindings }:
|
|
|
|
kde {
|
|
propagatedBuildInputs = [ qt4 phonon qimageblitz ];
|
|
buildNativeInputs = [ cmake ];
|
|
propagatedBuildNativeInputs = [ kdebindings.smokegen ];
|
|
|
|
meta = {
|
|
description = "C++ parser used to generate language bindings for Qt/KDE";
|
|
license = "GPLv2";
|
|
};
|
|
}
|