20 lines
463 B
Nix
20 lines
463 B
Nix
|
|
{ pkgs }:
|
||
|
|
|
||
|
|
pkgs.symlinkJoin {
|
||
|
|
name = "tb-scripts";
|
||
|
|
meta = {
|
||
|
|
description = "Custom utility scripts for TB - available on all systems";
|
||
|
|
maintainers = [ ];
|
||
|
|
};
|
||
|
|
paths = [
|
||
|
|
(pkgs.writeShellApplication {
|
||
|
|
name = ",jq_reformat";
|
||
|
|
runtimeInputs = [ pkgs.jq ];
|
||
|
|
text = builtins.readFile ./jq_reformat.sh;
|
||
|
|
})
|
||
|
|
(pkgs.writers.writePython3Bin ",rename_lower" {
|
||
|
|
libraries = [ ];
|
||
|
|
} (builtins.readFile ./rename_lower.py))
|
||
|
|
];
|
||
|
|
}
|