nixpkgs/pkgs/desktops/kde-4.12/kdebindings/smokegen.nix
2014-02-13 04:26:42 +02:00

14 lines
281 B
Nix

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