rocs: init at 18.12.0
This commit is contained in:
committed by
Adrian Kummerlaender
parent
b5f3b7db52
commit
39e4396ea7
@@ -0,0 +1,25 @@
|
||||
{
|
||||
stdenv, mkDerivation, makeWrapper, lib,
|
||||
extra-cmake-modules, boost,
|
||||
qtbase, qtscript, qtquickcontrols, qtwebkit, qtxmlpatterns, grantlee,
|
||||
kdoctools, karchive, kxmlgui, kcrash, kdeclarative, ktexteditor, kguiaddons
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "rocs";
|
||||
nativeBuildInputs = [ extra-cmake-modules makeWrapper kdoctools ];
|
||||
buildInputs = [
|
||||
boost
|
||||
qtbase qtscript qtquickcontrols qtwebkit qtxmlpatterns grantlee
|
||||
kxmlgui kcrash kdeclarative karchive ktexteditor kguiaddons
|
||||
];
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/rocs --prefix QT_PLUGIN_PATH ":" "${qtbase.bin}/${qtbase.qtPluginPrefix}:$out/${qtbase.qtPluginPrefix}"
|
||||
'';
|
||||
meta = with lib; {
|
||||
homepage = http://www.kde.org;
|
||||
license = with licenses; [ gpl2 lgpl21 fdl12 ];
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with maintainers; [ knairda ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user