about summary refs log tree commit diff
path: root/modules/workstation/windowing/sway/status.nix
blob: 2697317d76112ca12468eed7e2265e08cdd78220 (plain) (blame)
1
2
3
4
5
6
{ runCommandCC }:

runCommandCC "status" {} ''
  mkdir -p $out/bin
  c++ -std=c++17 -o $out/bin/status ${./status.cpp}
''