about summary refs log tree commit diff stats
path: root/pkgs/by-name/sh/show/package.nix
blob: 0855e1b141119a2eaa9b34a0b1614c39ddcd09c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  sysLib,
  less,
  locale,
}:
sysLib.writeShellScript {
  name = "show";
  src = ./show.sh;
  generateCompletions = false;
  keepPath = true; # I might want to use nvim in less (and shell escapes)
  dependencies = [
    less
    locale
  ];
}