lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

xbar: init at 2.1.7-beta (#209794)

authored by

Jenny and committed by
GitHub
dafe47b3 0040c979

+45
+7
maintainers/maintainer-list.nix
··· 18146 18146 matrix = "@qyriad:katesiria.org"; 18147 18147 name = "Qyriad"; 18148 18148 }; 18149 + r17x = { 18150 + email = "hi@rin.rocks"; 18151 + github = "r17x"; 18152 + githubId = 16365952; 18153 + name = "Rin"; 18154 + keys = [ { fingerprint = "476A F55D 6378 F878 0709 848A 18F9 F516 1CC0 576C"; } ]; 18155 + }; 18149 18156 r3dl3g = { 18150 18157 email = "redleg@rothfuss-web.de"; 18151 18158 github = "r3dl3g";
+38
pkgs/by-name/xb/xbar/package.nix
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchurl, 5 + undmg, 6 + }: 7 + 8 + stdenvNoCC.mkDerivation (finalAttrs: { 9 + pname = "xbar"; 10 + version = "2.1.7-beta"; 11 + 12 + src = fetchurl { 13 + url = "https://github.com/matryer/xbar/releases/download/v${finalAttrs.version}/xbar.v${finalAttrs.version}.dmg"; 14 + sha256 = "sha256-Cn6nxA5NTi7M4NrjycN3PUWd31r4Z0T3DES5+ZAbxz8="; 15 + }; 16 + 17 + sourceRoot = "xbar.app"; 18 + 19 + nativeBuildInputs = [ undmg ]; 20 + 21 + installPhase = '' 22 + runHook preInstall 23 + 24 + mkdir -p $out/Applications/xbar.app 25 + cp -R . $out/Applications/xbar.app 26 + 27 + runHook postInstall 28 + ''; 29 + 30 + meta = { 31 + description = "Put the output from any script or program into your macOS Menu Bar (the BitBar reboot)"; 32 + homepage = "https://xbarapp.com/"; 33 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 34 + platforms = lib.platforms.darwin; 35 + maintainers = with lib.maintainers; [ r17x ]; 36 + license = lib.licenses.mit; 37 + }; 38 + })