.dotfiles/pkgs/flake/ts2t/default.nix

9 lines
168 B
Nix

{ name, writeShellApplication, ... }:
writeShellApplication {
inherit name;
runtimeInputs = [ ];
text = ''
date -d @"$1" 2>/dev/null || date -r "$1"
'';
}