Merge pull request #55584 from KnairdA/master

rocs: init at 18.12.0
This commit is contained in:
Thomas Tuegel 2019-09-28 14:21:30 -05:00 committed by GitHub
commit 6c76258a15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 1 deletions

View File

@ -3396,7 +3396,11 @@
github = "kmein";
githubId = 10352507;
};
knairda = {
email = "adrian@kummerlaender.eu";
name = "Adrian Kummerlaender";
github = "KnairdA";
};
knedlsepp = {
email = "josef.kemetmueller@gmail.com";
github = "knedlsepp";

View File

@ -172,6 +172,7 @@ let
pim-data-exporter = callPackage ./pim-data-exporter.nix {};
pim-sieve-editor = callPackage ./pim-sieve-editor.nix {};
print-manager = callPackage ./print-manager.nix {};
rocs = callPackage ./rocs.nix {};
spectacle = callPackage ./spectacle.nix {};
yakuake = callPackage ./yakuake.nix {};
# Okteta was removed from kde applications and will now be released independently

View File

@ -0,0 +1,25 @@
{
mkDerivation, lib,
extra-cmake-modules, boost,
qtbase, qtscript, qtquickcontrols, qtwebkit, qtxmlpatterns, grantlee,
kdoctools, karchive, kxmlgui, kcrash, kdeclarative, ktexteditor, kguiaddons
}:
mkDerivation {
name = "rocs";
meta = with lib; {
homepage = "https://edu.kde.org/rocs/";
description = "A graph theory IDE.";
license = with licenses; [ gpl2 lgpl21 fdl12 ];
platforms = lib.platforms.linux;
maintainers = with maintainers; [ knairda ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
boost
qtbase qtscript qtquickcontrols qtwebkit qtxmlpatterns grantlee
kxmlgui kcrash kdeclarative karchive ktexteditor kguiaddons
];
}