kde-applications: Create alias to okteta

This commit is contained in:
adisbladis 2018-04-24 15:16:45 +08:00
parent 58f53dc4d4
commit 337e9723ce
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5
2 changed files with 5 additions and 1 deletions

View File

@ -28,6 +28,7 @@ still shows most of the available features is in `./gwenview.nix`.
{
stdenv, lib, libsForQt5, fetchurl, recurseIntoAttrs,
plasma5, attica, phonon,
okteta
}:
let
@ -151,7 +152,6 @@ let
mbox-importer = callPackage ./mbox-importer.nix {};
messagelib = callPackage ./messagelib.nix {};
minuet = callPackage ./minuet.nix {};
okteta = callPackage ./okteta.nix {};
okular = callPackage ./okular.nix {};
pimcommon = callPackage ./pimcommon.nix {};
pim-data-exporter = callPackage ./pim-data-exporter.nix {};
@ -159,6 +159,9 @@ let
print-manager = callPackage ./print-manager.nix {};
spectacle = callPackage ./spectacle.nix {};
syndication = callPackage ./syndication.nix {};
# Okteta was removed from kde applications and will now be released independently
# Lets keep an alias for compatibility reasons
inherit okteta;
};
in lib.makeScope libsForQt5.newScope packages

View File

@ -16411,6 +16411,7 @@ with pkgs;
inherit stdenv lib libsForQt5 fetchurl recurseIntoAttrs;
inherit plasma5;
inherit attica phonon;
inherit okteta;
};
in
recurseIntoAttrs (makeOverridable mkApplications attrs);