From d45af61f820d60ab72a137c2e925558b412ca2ac Mon Sep 17 00:00:00 2001 From: Yury Shvedov Date: Sun, 9 Mar 2025 16:24:22 +0300 Subject: [PATCH] nix: perform autoformatting --- flake.nix | 44 +++++++++++++++++----------- nix/default.nix | 76 +++++++++++++++++++++++++++---------------------- nix/module.nix | 28 +++++++++++------- 3 files changed, 87 insertions(+), 61 deletions(-) diff --git a/flake.nix b/flake.nix index ec82792..7c3b33a 100644 --- a/flake.nix +++ b/flake.nix @@ -8,11 +8,19 @@ nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; }; - outputs = { self, ymExe, nixpkgs, flake-utils }: + outputs = + { + self, + ymExe, + nixpkgs, + flake-utils, + }: let - yandex-music-with = pkgs: pkgs.callPackage ./nix { - inherit ymExe; - }; + yandex-music-with = + pkgs: + pkgs.callPackage ./nix { + inherit ymExe; + }; modules = isHm: rec { yandex-music = { imports = [ (import ./nix/module.nix { inherit isHm yandex-music-with; }) ]; @@ -20,19 +28,21 @@ default = yandex-music; }; in - flake-utils.lib.eachDefaultSystem - (system: - let - pkgs = import nixpkgs { inherit system; }; - in - { - packages = rec { - yandex-music = yandex-music-with pkgs; - yandex-music-noflakes = pkgs.callPackage ./nix { }; - default = yandex-music; - }; - } - ) // { + flake-utils.lib.eachDefaultSystem ( + system: + let + pkgs = import nixpkgs { inherit system; }; + in + { + packages = rec { + yandex-music = yandex-music-with pkgs; + yandex-music-noflakes = pkgs.callPackage ./nix { }; + default = yandex-music; + }; + formatter = pkgs.nixfmt-rfc-style; + } + ) + // { nixosModules = modules false; homeManagerModules = modules true; diff --git a/nix/default.nix b/nix/default.nix index 193dbae..c80ce83 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -1,22 +1,23 @@ -{ fetchurl -, stdenvNoCC -, lib -, makeWrapper +{ + fetchurl, + stdenvNoCC, + lib, + makeWrapper, -, p7zip -, asar -, jq -, python3 -, electron + p7zip, + asar, + jq, + python3, + electron, -, ymExe ? null -, electronArguments ? "" -, trayEnabled ? false -, trayStyle ? 1 -, trayAlways ? false -, devTools ? false -, vibeAnimationMaxFps ? 25 -, customTitleBar ? false + ymExe ? null, + electronArguments ? "", + trayEnabled ? false, + trayStyle ? 1, + trayAlways ? false, + devTools ? false, + vibeAnimationMaxFps ? 25, + customTitleBar ? false, }: let inherit (lib) optionalString assertMsg; @@ -24,8 +25,7 @@ let in assert assertMsg (trayStyle >= 1 && trayStyle <= 3) "Tray style must be withing 1 and 3"; assert assertMsg (vibeAnimationMaxFps >= 0) "Vibe animation max FPS must be greater then 0"; -stdenvNoCC.mkDerivation -{ +stdenvNoCC.mkDerivation { name = "yandex-music"; inherit (version_info.ym) version; @@ -44,8 +44,8 @@ stdenvNoCC.mkDerivation desktopItem = ../templates/desktop; ymScript = ../templates/yandex-music.sh; src = - if ymExe != null - then ymExe + if ymExe != null then + ymExe else fetchurl { url = version_info.ym.exe_link; @@ -61,18 +61,23 @@ stdenvNoCC.mkDerivation ''; dontPatch = true; - config ='' - ELECTRON_ARGS="${electronArguments}" - VIBE_ANIMATION_MAX_FPS=${toString vibeAnimationMaxFps} - '' + optionalString trayEnabled '' - TRAY_ENABLED=${toString trayStyle} - '' + optionalString trayAlways '' - ALWAYS_LEAVE_TO_TRAY=1 - '' + optionalString devTools '' - DEV_TOOLS=1 - '' + optionalString customTitleBar '' - CUSTOM_TITLE_BAR=1 - ''; + config = + '' + ELECTRON_ARGS="${electronArguments}" + VIBE_ANIMATION_MAX_FPS=${toString vibeAnimationMaxFps} + '' + + optionalString trayEnabled '' + TRAY_ENABLED=${toString trayStyle} + '' + + optionalString trayAlways '' + ALWAYS_LEAVE_TO_TRAY=1 + '' + + optionalString devTools '' + DEV_TOOLS=1 + '' + + optionalString customTitleBar '' + CUSTOM_TITLE_BAR=1 + ''; installPhase = '' mkdir -p "$out/share/nodejs" @@ -101,7 +106,10 @@ stdenvNoCC.mkDerivation homepage = "https://music.yandex.ru/"; downloadPage = "https://music.yandex.ru/download/"; license = lib.licenses.unfree; - platforms = [ "x86_64-linux" "aarch64-linux" ]; + platforms = [ + "x86_64-linux" + "aarch64-linux" + ]; maintainers = [ { name = "Yury Shvedov"; diff --git a/nix/module.nix b/nix/module.nix index 76f3e76..5c3ccc7 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -1,19 +1,27 @@ -{ yandex-music-with -, isHm ? false +{ + yandex-music-with, + isHm ? false, +}: +{ + lib, + pkgs, + config, + ... }: -{ lib, pkgs, config, ... }: let cfg = config.programs.yandex-music; in { - imports = [{ - nixpkgs.overlays = [ - (final: prev: { - yandex-music = yandex-music-with prev; - }) - ]; - }]; + imports = [ + { + nixpkgs.overlays = [ + (final: prev: { + yandex-music = yandex-music-with prev; + }) + ]; + } + ]; options = { programs.yandex-music = {