mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
Merge pull request #40721 from lheckemann/konquest
kdeApplications.konquest: init at 2.4
This commit is contained in:
commit
4810776809
@ -127,6 +127,7 @@ let
|
||||
konsole = callPackage ./konsole.nix {};
|
||||
kontact = callPackage ./kontact.nix {};
|
||||
kontactinterface = callPackage ./kontactinterface.nix {};
|
||||
konquest = callPackage ./konquest.nix {};
|
||||
korganizer = callPackage ./korganizer.nix {};
|
||||
kpimtextedit = callPackage ./kpimtextedit.nix {};
|
||||
ksmtp = callPackage ./ksmtp {};
|
||||
@ -140,6 +141,7 @@ let
|
||||
libgravatar = callPackage ./libgravatar.nix {};
|
||||
libkcddb = callPackage ./libkcddb.nix {};
|
||||
libkdcraw = callPackage ./libkdcraw.nix {};
|
||||
libkdegames = callPackage ./libkdegames.nix {};
|
||||
libkdepim = callPackage ./libkdepim.nix {};
|
||||
libkexiv2 = callPackage ./libkexiv2.nix {};
|
||||
libkgapi = callPackage ./libkgapi.nix {};
|
||||
|
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 ];
|
||||
};
|
||||
}
|
26
pkgs/applications/kde/libkdegames.nix
Normal file
26
pkgs/applications/kde/libkdegames.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib
|
||||
, mkDerivation
|
||||
, extra-cmake-modules
|
||||
, kdoctools
|
||||
, kdelibs4support
|
||||
, qtdeclarative
|
||||
, kdeclarative
|
||||
, kdnssd
|
||||
, knewstuff
|
||||
, openal
|
||||
, libsndfile
|
||||
, qtquickcontrols
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "libkdegames";
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||
buildInputs = [
|
||||
kdelibs4support qtdeclarative kdeclarative kdnssd knewstuff openal libsndfile
|
||||
qtquickcontrols
|
||||
];
|
||||
meta = {
|
||||
license = with lib.licenses; [ gpl2 ];
|
||||
maintainers = with lib.maintainers; [ lheckemann ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user