.dotfiles/pkgs/flake/t2ts/default.nix

9 lines
142 B
Nix

{ name, writeShellApplication, ... }:
writeShellApplication {
inherit name;
runtimeInputs = [ ];
text = ''
date -d"$1" +%s
'';
}