mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 08:25:55 +03:00
18 lines
433 B
Nix
18 lines
433 B
Nix
{ kdeFramework, lib, extra-cmake-modules, kdoctools, ki18n, kjs
|
|
, makeQtWrapper, qtsvg
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kjsembed";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
|
|
buildInputs = [ qtsvg ];
|
|
propagatedBuildInputs = [ ki18n kjs ];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/kjscmd5"
|
|
wrapQtProgram "$out/bin/kjsconsole"
|
|
'';
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|