mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
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 {};
|
||||
krfb = callPackage ./krfb.nix {};
|
||||
kruler = callPackage ./kruler.nix {};
|
||||
kspaceduel = callPackage ./kspaceduel.nix {};
|
||||
ksudoku = callPackage ./ksudoku.nix {};
|
||||
ksystemlog = callPackage ./ksystemlog.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…
Reference in New Issue
Block a user