kholidays: init at 17.04.0
This commit is contained in:
parent
463569f763
commit
7872516b99
@ -80,6 +80,7 @@ let
|
|||||||
kdf = callPackage ./kdf.nix {};
|
kdf = callPackage ./kdf.nix {};
|
||||||
kgpg = callPackage ./kgpg.nix {};
|
kgpg = callPackage ./kgpg.nix {};
|
||||||
khelpcenter = callPackage ./khelpcenter.nix {};
|
khelpcenter = callPackage ./khelpcenter.nix {};
|
||||||
|
kholidays = callPackage ./kholidays.nix {};
|
||||||
kidentitymanagement = callPackage ./kidentitymanagement.nix {};
|
kidentitymanagement = callPackage ./kidentitymanagement.nix {};
|
||||||
kig = callPackage ./kig.nix {};
|
kig = callPackage ./kig.nix {};
|
||||||
kimap = callPackage ./kimap.nix {};
|
kimap = callPackage ./kimap.nix {};
|
||||||
|
16
pkgs/applications/kde/kholidays.nix
Normal file
16
pkgs/applications/kde/kholidays.nix
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
mkDerivation, lib, kdepimTeam,
|
||||||
|
extra-cmake-modules, kdoctools,
|
||||||
|
qtbase, qtdeclarative, qttools,
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
name = "kholidays";
|
||||||
|
meta = {
|
||||||
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
||||||
|
maintainers = kdepimTeam;
|
||||||
|
};
|
||||||
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||||
|
buildInputs = [ qtbase qtdeclarative qttools ];
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user