nixpkgs/pkgs/desktops/kde-4.12/kdebindings/smokegen.nix

14 lines
306 B
Nix
Raw Normal View History

2014-07-28 02:43:20 -07:00
{ stdenv, kde, qt4, cmake }:
2014-02-12 18:25:11 -08:00
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 = stdenv.lib.licenses.gpl2;
2014-02-12 18:25:11 -08:00
};
}