mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 23:24:35 +00:00
17 lines
300 B
Nix
17 lines
300 B
Nix
|
{ kdeFramework, lib
|
||
|
, extra-cmake-modules
|
||
|
, kdoctools
|
||
|
, makeQtWrapper
|
||
|
}:
|
||
|
|
||
|
kdeFramework {
|
||
|
name = "kjs";
|
||
|
nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
|
||
|
postInstall = ''
|
||
|
wrapQtProgram "$out/bin/kjs5"
|
||
|
'';
|
||
|
meta = {
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
}
|