.dotfiles/pkgs/ts2t/default.nix
2024-12-29 00:36:04 +01:00

9 lines
168 B
Nix

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