-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
istatmenus: init at 7.02.10 (#358251)
- Loading branch information
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{ | ||
lib, | ||
stdenvNoCC, | ||
fetchurl, | ||
writeShellApplication, | ||
curl, | ||
common-updater-scripts, | ||
unzip, | ||
}: | ||
|
||
stdenvNoCC.mkDerivation (finalAttrs: { | ||
pname = "istatmenus"; | ||
version = "7.02.10"; | ||
|
||
src = fetchurl { | ||
url = "https://cdn.istatmenus.app/files/istatmenus${lib.versions.major finalAttrs.version}/versions/iStatMenus${finalAttrs.version}.zip"; | ||
hash = "sha256-ckYIQsJ0QEsIpXRFo1xioSCOwEL06d0cJrATa1URMIQ="; | ||
}; | ||
|
||
sourceRoot = "."; | ||
|
||
nativeBuildInputs = [ unzip ]; | ||
|
||
installPhase = '' | ||
runHook preInstall | ||
mkdir -p "$out/Applications" | ||
cp -r *.app "$out/Applications" | ||
runHook postInstall | ||
''; | ||
|
||
passthru.updateScript = lib.getExe (writeShellApplication { | ||
name = "istatmenus-update-script"; | ||
runtimeInputs = [ | ||
curl | ||
common-updater-scripts | ||
]; | ||
text = '' | ||
redirect_url="$(curl -s -L -f "https://download.bjango.com/istatmenus${lib.versions.major finalAttrs.version}/" -o /dev/null -w '%{url_effective}')" | ||
version="''${redirect_url##*/}"; version="''${version#iStatMenus}"; version="''${version%.zip}" | ||
update-source-version istatmenus "$version" --file=./pkgs/by-name/is/istatmenus/package.nix | ||
''; | ||
}); | ||
|
||
meta = { | ||
changelog = "https://bjango.com/mac/istatmenus/versionhistory/"; | ||
description = "iStat Menus is set of nine separate and highly configurable menu items that let you know exactly what's going on inside your Mac"; | ||
homepage = "https://bjango.com/mac/istatmenus/"; | ||
license = lib.licenses.unfree; | ||
maintainers = with lib.maintainers; [ donteatoreo ]; | ||
platforms = lib.platforms.darwin; | ||
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; | ||
}; | ||
}) |