mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
19 lines
321 B
Nix
19 lines
321 B
Nix
{ lib
|
|
, symlinkJoin
|
|
, aw-server-rust
|
|
, aw-qt
|
|
, aw-watcher-afk
|
|
, aw-watcher-window
|
|
, extraWatchers ? [ ]
|
|
}:
|
|
|
|
symlinkJoin {
|
|
name = "activitywatch-${aw-server-rust.version}";
|
|
paths = [
|
|
aw-server-rust.out
|
|
aw-qt.out
|
|
aw-watcher-afk.out
|
|
aw-watcher-window.out
|
|
] ++ (lib.forEach extraWatchers (p: p.out));
|
|
}
|