14 lines
306 B
Nix
14 lines
306 B
Nix
|
{ stdenv, 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 = stdenv.lib.licenses.gpl2;
|
||
|
};
|
||
|
}
|