rocs: init at 18.12.0
This commit is contained in:
parent
b5f3b7db52
commit
39e4396ea7
|
@ -2434,7 +2434,11 @@
|
||||||
name = "Karl Meakin";
|
name = "Karl Meakin";
|
||||||
github = "Kmeakin";
|
github = "Kmeakin";
|
||||||
};
|
};
|
||||||
|
knairda = {
|
||||||
|
email = "adrian@kummerlaender.eu";
|
||||||
|
name = "Adrian Kummerlaender";
|
||||||
|
github = "KnairdA";
|
||||||
|
};
|
||||||
knedlsepp = {
|
knedlsepp = {
|
||||||
email = "josef.kemetmueller@gmail.com";
|
email = "josef.kemetmueller@gmail.com";
|
||||||
github = "knedlsepp";
|
github = "knedlsepp";
|
||||||
|
|
|
@ -166,6 +166,7 @@ let
|
||||||
pim-data-exporter = callPackage ./pim-data-exporter.nix {};
|
pim-data-exporter = callPackage ./pim-data-exporter.nix {};
|
||||||
pim-sieve-editor = callPackage ./pim-sieve-editor.nix {};
|
pim-sieve-editor = callPackage ./pim-sieve-editor.nix {};
|
||||||
print-manager = callPackage ./print-manager.nix {};
|
print-manager = callPackage ./print-manager.nix {};
|
||||||
|
rocs = callPackage ./rocs.nix {};
|
||||||
spectacle = callPackage ./spectacle.nix {};
|
spectacle = callPackage ./spectacle.nix {};
|
||||||
# Okteta was removed from kde applications and will now be released independently
|
# Okteta was removed from kde applications and will now be released independently
|
||||||
# Lets keep an alias for compatibility reasons
|
# Lets keep an alias for compatibility reasons
|
||||||
|
|
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue