lunar: init at 6.9.5 (#459834)

This commit is contained in:
Sandro
2025-11-17 19:54:08 +00:00
committed by GitHub
+48
View File
@@ -0,0 +1,48 @@
{
lib,
stdenvNoCC,
_7zz,
fetchurl,
nix-update-script,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "lunar";
version = "6.9.5";
src = fetchurl {
url = "https://github.com/alin23/Lunar/releases/download/v${finalAttrs.version}/Lunar-${finalAttrs.version}.dmg";
hash = "sha256-1Y0SFfGliGf1zf4k9iolotMzoAbBH27R0ablMmfeyDM=";
};
sourceRoot = ".";
nativeBuildInputs = [ _7zz ];
installPhase = ''
runHook preInstall
mkdir -p $out/Applications
cp -R ./Lunar.app $out/Applications
runHook postInstall
'';
passthru.updateScript = nix-update-script { };
meta = {
description = "Defacto app for controlling monitors";
homepage = "https://lunar.fyi/";
changelog = "https://github.com/alin23/Lunar/releases/tag/v${finalAttrs.version}";
license = with lib.licenses; [
mit
unfree
];
maintainers = with lib.maintainers; [ delafthi ];
platforms = [
"x86_64-darwin"
"aarch64-darwin"
];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
})