mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
kholidays: init at 17.04.0
This commit is contained in:
parent
463569f763
commit
7872516b99
@ -80,6 +80,7 @@ let
|
||||
kdf = callPackage ./kdf.nix {};
|
||||
kgpg = callPackage ./kgpg.nix {};
|
||||
khelpcenter = callPackage ./khelpcenter.nix {};
|
||||
kholidays = callPackage ./kholidays.nix {};
|
||||
kidentitymanagement = callPackage ./kidentitymanagement.nix {};
|
||||
kig = callPackage ./kig.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…
Reference in New Issue
Block a user