about summary refs log tree commit diff stats
path: root/pkgs/by-name/lo/lock/package.nix
blob: 84cbe3d1b6d916ce06731ec5880ba9b1e9aa171b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  writeShellApplication,
  taskwarrior,
  swaylock,
}:
writeShellApplication {
  name = "lock";
  text = builtins.readFile ./lock.sh;
  runtimeInputs = [
    taskwarrior
    swaylock
  ];
}