kdeApplications.kspaceduel: init at 19.12.3
This commit is contained in:
parent
c48afe3a52
commit
d1ec67f11e
@ -147,6 +147,7 @@ let
|
|||||||
krdc = callPackage ./krdc.nix {};
|
krdc = callPackage ./krdc.nix {};
|
||||||
krfb = callPackage ./krfb.nix {};
|
krfb = callPackage ./krfb.nix {};
|
||||||
kruler = callPackage ./kruler.nix {};
|
kruler = callPackage ./kruler.nix {};
|
||||||
|
kspaceduel = callPackage ./kspaceduel.nix {};
|
||||||
ksudoku = callPackage ./ksudoku.nix {};
|
ksudoku = callPackage ./ksudoku.nix {};
|
||||||
ksystemlog = callPackage ./ksystemlog.nix {};
|
ksystemlog = callPackage ./ksystemlog.nix {};
|
||||||
ktnef = callPackage ./ktnef.nix {};
|
ktnef = callPackage ./ktnef.nix {};
|
||||||
|
22
pkgs/applications/kde/kspaceduel.nix
Normal file
22
pkgs/applications/kde/kspaceduel.nix
Normal file
@ -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
|
||||||
|
];
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user