nixpkgs/pkgs/desktops/kde-4.10/kdebindings/smokegen.nix
2013-08-15 16:25:02 +00:00

14 lines
302 B
Nix

{ kde, qt4, cmake }:
kde {
buildInputs = [ qt4 ];
nativeBuildInputs = [ cmake ];
patches = [ ./smokegen-SmokeConfig.cmake.in-nix.patch ./smokegen-CMakeLists.txt-nix.patch ];
meta = {
description = "C++ parser used to generate language bindings for Qt/KDE";
license = "GPLv2";
};
}