.dotfiles/pkgs/ts2t/default.nix
2024-12-15 14:59:08 +01:00

9 lines
158 B
Nix

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