plasma5Packages.kopeninghours: init
This commit is contained in:
parent
95503b9292
commit
c327d2b7ac
@ -179,6 +179,7 @@ let
|
||||
kontact = callPackage ./kontact.nix {};
|
||||
konversation = callPackage ./konversation.nix {};
|
||||
kontactinterface = callPackage ./kontactinterface.nix {};
|
||||
kopeninghours = callPackage ./kopeninghours.nix {};
|
||||
korganizer = callPackage ./korganizer.nix {};
|
||||
kpat = callPackage ./kpat.nix {};
|
||||
kpimtextedit = callPackage ./kpimtextedit.nix {};
|
||||
|
28
pkgs/applications/kde/kopeninghours.nix
Normal file
28
pkgs/applications/kde/kopeninghours.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user