blob: d2784169bd6afb4638cd4e2f97479a63c0148199 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
writeShellApplication,
# Dependencies
coreutils,
fd,
gnugrep,
bat-extras, # For `batgrep`
bat, # used by batgrep
gnused, # required by batgrep
}:
writeShellApplication {
name = "fupdate-flake";
tetx = builtins.readFile ./fupdate-flake.sh;
inheritPath = false;
runtimeInputs = [
coreutils
fd
gnugrep
bat-extras # For `batgrep`
bat # Used by `batgrep`
gnused # Required by `batgrep`
];
}
|