mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
11 lines
145 B
Nix
11 lines
145 B
Nix
{
|
|
mkKdeDerivation,
|
|
qt5compat,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "ktimer";
|
|
|
|
extraBuildInputs = [ qt5compat ];
|
|
meta.mainProgram = "ktimer";
|
|
}
|