mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-06 07:12:20 +00:00
15 lines
270 B
Nix
15 lines
270 B
Nix
{ kde, cmake, kdelibs, automoc4 }:
|
|
|
|
kde.package {
|
|
buildInputs = [ cmake kdelibs automoc4 ];
|
|
|
|
meta = {
|
|
description = "KDE utility for making a fine cup of tea";
|
|
kde = {
|
|
name = "kteatime";
|
|
module = "kdetoys";
|
|
version = "1.2.1";
|
|
};
|
|
};
|
|
}
|