5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{ lib
|
|
, stdenvNoCC
|
|
, fetchurl
|
|
, undmg
|
|
, writeShellApplication
|
|
, curl
|
|
, jq
|
|
, common-updater-scripts
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "stats";
|
|
version = "2.10.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/exelban/stats/releases/download/v${finalAttrs.version}/Stats.dmg";
|
|
hash = "sha256-vF32tDuSAZJrZ21iKtM+/2qk9WWoyMddrtg5wK2+IaI=";
|
|
};
|
|
|
|
sourceRoot = ".";
|
|
|
|
nativeBuildInputs = [ undmg ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/Applications
|
|
cp -r *.app $out/Applications
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = lib.getExe (writeShellApplication {
|
|
name = "stats-update-script";
|
|
runtimeInputs = [ curl jq common-updater-scripts ];
|
|
text = ''
|
|
set -euo pipefail
|
|
url="$(curl --silent "https://api.github.com/repos/exelban/stats/tags?per_page=1")"
|
|
version="$(echo "$url" | jq -r '.[0].name' | cut -c 2-)"
|
|
update-source-version stats "$version" --file=./pkgs/by-name/st/stats/package.nix
|
|
'';
|
|
});
|
|
|
|
meta = with lib; {
|
|
description = "macOS system monitor in your menu bar";
|
|
homepage = "https://github.com/exelban/stats";
|
|
license = licenses.mit;
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
maintainers = with maintainers; [ emilytrau Enzime donteatoreo ];
|
|
platforms = platforms.darwin;
|
|
};
|
|
})
|