5 lines
98 B
Nix
5 lines
98 B
Nix
{pkgs, ...}:
|
|
pkgs.writeShellApplication {
|
|
name = "to-s3";
|
|
text = builtins.readFile ./to-s3;
|
|
}
|