taft/package.nix

14 lines
191 B
Nix
Raw Normal View History

2024-12-24 20:30:02 +00:00
{
writeShellApplication,
gnutar,
netcat-openbsd,
}:
writeShellApplication {
name = "taft";
runtimeInputs = [
gnutar
netcat-openbsd
];
text = builtins.readFile ./taft;
}