commit
6c76258a15
@ -3396,7 +3396,11 @@
|
|||||||
github = "kmein";
|
github = "kmein";
|
||||||
githubId = 10352507;
|
githubId = 10352507;
|
||||||
};
|
};
|
||||||
|
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";
|
||||||
|
@ -172,6 +172,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 {};
|
||||||
yakuake = callPackage ./yakuake.nix {};
|
yakuake = callPackage ./yakuake.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
|
||||||
|
25
pkgs/applications/kde/rocs.nix
Normal file
25
pkgs/applications/kde/rocs.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user