blob: 71ab1b9f72937f9188bb0a8ea7fa5c983c7f9909 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{
writeShellApplication,
# Dependencies
coreutils,
}:
writeShellApplication {
name = "battery";
text = builtins.readFile ./battery.sh;
inheritPath = false;
runtimeInputs = [coreutils];
}
|