about summary refs log blame commit diff stats
path: root/pkgs/by-name/de/description/package.nix
blob: 568ffcacb34133c349060740d4b45db0dbd7a136 (plain) (tree)


















                              
{
  sysLib,
  # dependencies
  jq,
  fmt,
  less,
  locale,
}:
sysLib.writeShellScript {
  name = "description";
  src = ./description.sh;
  generateCompletions = false;
  keepPath = false;
  dependencies = [
    jq
    fmt
    less
    locale
  ];
}