1
0
Fork 0
taft/package.nix

14 lines
191 B
Nix
Raw Normal View History

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