3
0
Fork 0
forked from mirrors/nixpkgs

plasma5Packages.kopeninghours: init

This commit is contained in:
Sandro Jäckel 2023-10-06 21:17:44 +02:00
parent 95503b9292
commit c327d2b7ac
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 29 additions and 0 deletions

View file

@ -179,6 +179,7 @@ let
kontact = callPackage ./kontact.nix {}; kontact = callPackage ./kontact.nix {};
konversation = callPackage ./konversation.nix {}; konversation = callPackage ./konversation.nix {};
kontactinterface = callPackage ./kontactinterface.nix {}; kontactinterface = callPackage ./kontactinterface.nix {};
kopeninghours = callPackage ./kopeninghours.nix {};
korganizer = callPackage ./korganizer.nix {}; korganizer = callPackage ./korganizer.nix {};
kpat = callPackage ./kpat.nix {}; kpat = callPackage ./kpat.nix {};
kpimtextedit = callPackage ./kpimtextedit.nix {}; kpimtextedit = callPackage ./kpimtextedit.nix {};

View file

@ -0,0 +1,28 @@
{ mkDerivation
, lib
, bison
, extra-cmake-modules
, flex
, kholidays
, ki18n
}:
mkDerivation {
pname = "kopeninghours";
outputs = [ "out" "dev" ];
nativeBuildInputs = [
bison
extra-cmake-modules
flex
];
buildInputs = [
kholidays
ki18n
];
meta = {
license = with lib.licenses; [ bsd3 cc0 lgpl2Plus ];
};
}