nixpkgs/pkgs/desktops/kde-4.8/kdebindings/smokegen.nix
Yury G. Kudryashov 9dcf8dffa2 Enable perlqt and smokekde from kdebindings
I had to patch their buildsystem. I'm going to submit the patches upstream next
week.

svn path=/nixpkgs/trunk/; revision=33309
2012-03-20 21:45:15 +00:00

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";
};
}