mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
zanshin: move to pkgs/application/kde
This commit is contained in:
parent
f7e0314364
commit
07b0970f18
5 changed files with 20 additions and 40 deletions
|
@ -221,6 +221,7 @@ let
|
|||
skanlite = callPackage ./skanlite.nix {};
|
||||
spectacle = callPackage ./spectacle.nix {};
|
||||
yakuake = callPackage ./yakuake.nix {};
|
||||
zanshin = callPackage ./zanshin.nix {};
|
||||
};
|
||||
|
||||
in lib.makeScope libsForQt5.newScope packages
|
||||
|
|
18
pkgs/applications/kde/zanshin.nix
Normal file
18
pkgs/applications/kde/zanshin.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
mkDerivation, lib,
|
||||
extra-cmake-modules,
|
||||
akonadi-calendar, boost, kontactinterface, krunner
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
pname = "zanshin";
|
||||
meta = with lib; {
|
||||
description = "A powerful yet simple application to manage your day to day actions, getting your mind like water";
|
||||
homepage = "https://zanshin.kde.org/";
|
||||
maintainers = with maintainers; [ zraexy ];
|
||||
license = licenses.gpl2Plus;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ extra-cmake-modules ];
|
||||
buildInputs = [ akonadi-calendar boost kontactinterface krunner ];
|
||||
}
|
|
@ -1,38 +0,0 @@
|
|||
{ mkDerivation
|
||||
, lib
|
||||
, fetchurl
|
||||
, extra-cmake-modules
|
||||
, boost
|
||||
, akonadi-calendar
|
||||
, kontactinterface
|
||||
, krunner
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "zanshin";
|
||||
version = "21.12.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/release-service/${version}/src/zanshin-${version}.tar.xz";
|
||||
sha256 = "sha256-zMCV4KIrqeKHEsMbqEbnm/DgQiGxZbZXDVMuSSrXj8Y=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
extra-cmake-modules
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
boost
|
||||
akonadi-calendar
|
||||
kontactinterface
|
||||
krunner
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A powerful yet simple application to manage your day to day actions, getting your mind like water";
|
||||
homepage = "https://zanshin.kde.org/";
|
||||
maintainers = with maintainers; [ zraexy ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl2Plus;
|
||||
};
|
||||
}
|
|
@ -1433,6 +1433,7 @@ mapAliases ({
|
|||
plasma-systemmonitor plasma-thunderbolt plasma-vault plasma-workspace
|
||||
plasma-workspace-wallpapers polkit-kde-agent powerdevil qqc2-breeze-style
|
||||
sddm-kcm skanlite spectacle systemsettings xdg-desktop-portal-kde yakuake
|
||||
zanshin
|
||||
;
|
||||
|
||||
inherit (plasma5Packages.thirdParty)
|
||||
|
|
|
@ -30171,8 +30171,6 @@ with pkgs;
|
|||
|
||||
zammad = callPackage ../applications/networking/misc/zammad { };
|
||||
|
||||
zanshin = libsForQt5.callPackage ../applications/office/zanshin { };
|
||||
|
||||
zathuraPkgs = callPackage ../applications/misc/zathura { };
|
||||
zathura = zathuraPkgs.zathuraWrapper;
|
||||
|
||||
|
|
Loading…
Reference in a new issue