mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 08:27:11 +00:00
20 lines
216 B
Nix
20 lines
216 B
Nix
{
|
|
writeShellApplication,
|
|
gnugrep,
|
|
gnused,
|
|
git,
|
|
nix,
|
|
}:
|
|
writeShellApplication {
|
|
name = "bumper";
|
|
|
|
runtimeInputs = [
|
|
gnugrep
|
|
gnused
|
|
git
|
|
nix
|
|
];
|
|
|
|
text = builtins.readFile ./bumper.sh;
|
|
}
|