Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
apple-juice # Apple Juice
];
}
Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
apple-juice # Apple Juice
];
}
Package Definition
{
"pname": "apple-juice",
"version": "2020.12.0",
"src": {
"url": "https://github.com/raphaelhanneken/apple-juice/releases/download/2020.12.0/Apple.Juice.dmg",
"sha256": "32aff8e2b2de61076fca1243091ab6e0166d38b4657afedcf01ae28133b69cae"
},
"installPhase": [
"mkdir -p \"$out/Applications/Apple Juice.app\" && cp -r \"Apple Juice.app\" \"$out/Applications\""
],
"meta": {
"description": "Battery gauge that displays the remaining battery time and more",
"homepage": "https://github.com/raphaelhanneken/apple-juice"
}
}