nixpkgs/pkgs/desktops/kde-4.11/kdebindings/smokegen.nix
Evgeny Egorochkin b25bcf853f package KDE 4.11
2013-08-21 20:41:07 +03: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";
};
}