commit
c551f2db16
@ -138,6 +138,7 @@ let
|
|||||||
konquest = callPackage ./konquest.nix {};
|
konquest = callPackage ./konquest.nix {};
|
||||||
konqueror = callPackage ./konqueror.nix {};
|
konqueror = callPackage ./konqueror.nix {};
|
||||||
korganizer = callPackage ./korganizer.nix {};
|
korganizer = callPackage ./korganizer.nix {};
|
||||||
|
kpat = callPackage ./kpat.nix {};
|
||||||
kpimtextedit = callPackage ./kpimtextedit.nix {};
|
kpimtextedit = callPackage ./kpimtextedit.nix {};
|
||||||
ksmtp = callPackage ./ksmtp {};
|
ksmtp = callPackage ./ksmtp {};
|
||||||
kqtquickcharts = callPackage ./kqtquickcharts.nix {};
|
kqtquickcharts = callPackage ./kqtquickcharts.nix {};
|
||||||
|
25
pkgs/applications/kde/kpat.nix
Normal file
25
pkgs/applications/kde/kpat.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib
|
||||||
|
, mkDerivation
|
||||||
|
, extra-cmake-modules
|
||||||
|
, knewstuff
|
||||||
|
, shared-mime-info
|
||||||
|
, libkdegames
|
||||||
|
, freecell-solver
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
name = "kpat";
|
||||||
|
nativeBuildInputs = [
|
||||||
|
extra-cmake-modules
|
||||||
|
shared-mime-info
|
||||||
|
];
|
||||||
|
buildInputs = [
|
||||||
|
knewstuff
|
||||||
|
libkdegames
|
||||||
|
freecell-solver
|
||||||
|
];
|
||||||
|
meta = {
|
||||||
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
||||||
|
maintainers = with lib.maintainers; [ rnhmjoj ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user