mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
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;
|
|
};
|
|
}
|