Files
nixpkgs/pkgs/by-name/xb/xbar/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

39 lines
913 B
Nix

{
lib,
stdenvNoCC,
fetchurl,
undmg,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "xbar";
version = "2.1.7-beta";
src = fetchurl {
url = "https://github.com/matryer/xbar/releases/download/v${finalAttrs.version}/xbar.v${finalAttrs.version}.dmg";
sha256 = "sha256-Cn6nxA5NTi7M4NrjycN3PUWd31r4Z0T3DES5+ZAbxz8=";
};
sourceRoot = "xbar.app";
nativeBuildInputs = [ undmg ];
installPhase = ''
runHook preInstall
mkdir -p $out/Applications/xbar.app
cp -R . $out/Applications/xbar.app
runHook postInstall
'';
meta = {
description = "Put the output from any script or program into your macOS Menu Bar (the BitBar reboot)";
homepage = "https://xbarapp.com/";
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
platforms = lib.platforms.darwin;
maintainers = with lib.maintainers; [ r17x ];
license = lib.licenses.mit;
};
})