9dcf8dffa2
I had to patch their buildsystem. I'm going to submit the patches upstream next week. svn path=/nixpkgs/trunk/; revision=33309
14 lines
245 B
Nix
14 lines
245 B
Nix
{ kde, qt4, cmake }:
|
|
|
|
kde {
|
|
buildInputs = [ qt4 ];
|
|
buildNativeInputs = [ cmake ];
|
|
|
|
patches = [ ./smokegen-nix.patch ];
|
|
|
|
meta = {
|
|
description = "C++ parser used to generate language bindings for Qt/KDE";
|
|
license = "GPLv2";
|
|
};
|
|
}
|