From d1ec67f11eaedf0a9c6472a4fbac693df8e22b5b Mon Sep 17 00:00:00 2001 From: adisbladis Date: Tue, 14 Apr 2020 08:59:02 +0100 Subject: kdeApplications.kspaceduel: init at 19.12.3 --- pkgs/applications/kde/default.nix | 1 + pkgs/applications/kde/kspaceduel.nix | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/applications/kde/kspaceduel.nix (limited to 'pkgs/applications') diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix index c5dad95becdb..60df1f899ded 100644 --- a/pkgs/applications/kde/default.nix +++ b/pkgs/applications/kde/default.nix @@ -147,6 +147,7 @@ let krdc = callPackage ./krdc.nix {}; krfb = callPackage ./krfb.nix {}; kruler = callPackage ./kruler.nix {}; + kspaceduel = callPackage ./kspaceduel.nix {}; ksudoku = callPackage ./ksudoku.nix {}; ksystemlog = callPackage ./ksystemlog.nix {}; ktnef = callPackage ./ktnef.nix {}; diff --git a/pkgs/applications/kde/kspaceduel.nix b/pkgs/applications/kde/kspaceduel.nix new file mode 100644 index 000000000000..b18a3e7cf8f7 --- /dev/null +++ b/pkgs/applications/kde/kspaceduel.nix @@ -0,0 +1,22 @@ +{ mkDerivation, lib +, extra-cmake-modules +, cmake +, kdbusaddons +, ki18n +, kconfigwidgets +, kcrash +, kxmlgui +, libkdegames +}: + +mkDerivation { + name = "kspaceduel"; + meta.license = with lib.licenses; [ lgpl21 gpl3 ]; + outputs = [ "out" "dev" ]; + nativeBuildInputs = [ + cmake extra-cmake-modules + ]; + propagatedBuildInputs = [ + kdbusaddons ki18n kconfigwidgets kcrash kxmlgui libkdegames + ]; +} -- cgit 1.4.1