Price Hiller
720ea2d89f
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 40s
21 lines
378 B
Nix
21 lines
378 B
Nix
{ pkgs, ... }:
|
|
{
|
|
screen-cap = pkgs.callPackage ./screen-cap/default.nix { };
|
|
Fmt = pkgs.writeShellApplication {
|
|
name = "Fmt";
|
|
runtimeInputs = with pkgs; [
|
|
stylua
|
|
gnugrep
|
|
nixfmt-rfc-style
|
|
nodePackages.prettier
|
|
shfmt
|
|
];
|
|
text = (
|
|
''
|
|
#!${pkgs.bash}/bin/bash
|
|
''
|
|
+ builtins.readFile ./fmt.bash
|
|
);
|
|
};
|
|
}
|