kdeApplications.konquest: init at 2.4
This commit is contained in:
parent
60216b2f39
commit
9eb61e8408
@ -127,6 +127,7 @@ let
|
|||||||
konsole = callPackage ./konsole.nix {};
|
konsole = callPackage ./konsole.nix {};
|
||||||
kontact = callPackage ./kontact.nix {};
|
kontact = callPackage ./kontact.nix {};
|
||||||
kontactinterface = callPackage ./kontactinterface.nix {};
|
kontactinterface = callPackage ./kontactinterface.nix {};
|
||||||
|
konquest = callPackage ./konquest.nix {};
|
||||||
korganizer = callPackage ./korganizer.nix {};
|
korganizer = callPackage ./korganizer.nix {};
|
||||||
kpimtextedit = callPackage ./kpimtextedit.nix {};
|
kpimtextedit = callPackage ./kpimtextedit.nix {};
|
||||||
ksmtp = callPackage ./ksmtp {};
|
ksmtp = callPackage ./ksmtp {};
|
||||||
|
18
pkgs/applications/kde/konquest.nix
Normal file
18
pkgs/applications/kde/konquest.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{ lib
|
||||||
|
, mkDerivation
|
||||||
|
, extra-cmake-modules
|
||||||
|
, kdoctools
|
||||||
|
, kdelibs4support
|
||||||
|
, libkdegames
|
||||||
|
, qtquickcontrols
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
name = "konquest";
|
||||||
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||||
|
buildInputs = [ kdelibs4support libkdegames qtquickcontrols ];
|
||||||
|
meta = {
|
||||||
|
license = with lib.licenses; [ gpl2 ];
|
||||||
|
maintainers = with lib.maintainers; [ lheckemann ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user