mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-11 07:23:40 +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";
|
||
|
};
|
||
|
};
|
||
|
}
|