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

14 lines
306 B
Nix
Raw Normal View History

2014-07-28 11:43:20 +02:00
{ stdenv, kde, qt4, cmake }:
2014-02-13 03:25:11 +01: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-13 03:25:11 +01:00
};
}