14 lines
231 B
Nix
14 lines
231 B
Nix
{pkgs, ...}:
|
|
with pkgs;
|
|
writers.writeBashBin "dotstate" {
|
|
makeWrapperArgs = [
|
|
"--prefix"
|
|
"PATH"
|
|
":"
|
|
"${lib.makeBinPath [
|
|
socat
|
|
jq
|
|
]}"
|
|
];
|
|
} (builtins.readFile ./dotstate.sh)
|