0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2025-04-05 08:43:43 +03:00

nix: perform autoformatting

This commit is contained in:
Yury Shvedov 2025-03-09 16:24:22 +03:00
parent ec926bad0f
commit d45af61f82
3 changed files with 87 additions and 61 deletions

View File

@ -8,9 +8,17 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
}; };
outputs = { self, ymExe, nixpkgs, flake-utils }: outputs =
{
self,
ymExe,
nixpkgs,
flake-utils,
}:
let let
yandex-music-with = pkgs: pkgs.callPackage ./nix { yandex-music-with =
pkgs:
pkgs.callPackage ./nix {
inherit ymExe; inherit ymExe;
}; };
modules = isHm: rec { modules = isHm: rec {
@ -20,8 +28,8 @@
default = yandex-music; default = yandex-music;
}; };
in in
flake-utils.lib.eachDefaultSystem flake-utils.lib.eachDefaultSystem (
(system: system:
let let
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs { inherit system; };
in in
@ -31,8 +39,10 @@
yandex-music-noflakes = pkgs.callPackage ./nix { }; yandex-music-noflakes = pkgs.callPackage ./nix { };
default = yandex-music; default = yandex-music;
}; };
formatter = pkgs.nixfmt-rfc-style;
} }
) // { )
// {
nixosModules = modules false; nixosModules = modules false;
homeManagerModules = modules true; homeManagerModules = modules true;

View File

@ -1,22 +1,23 @@
{ fetchurl {
, stdenvNoCC fetchurl,
, lib stdenvNoCC,
, makeWrapper lib,
makeWrapper,
, p7zip p7zip,
, asar asar,
, jq jq,
, python3 python3,
, electron electron,
, ymExe ? null ymExe ? null,
, electronArguments ? "" electronArguments ? "",
, trayEnabled ? false trayEnabled ? false,
, trayStyle ? 1 trayStyle ? 1,
, trayAlways ? false trayAlways ? false,
, devTools ? false devTools ? false,
, vibeAnimationMaxFps ? 25 vibeAnimationMaxFps ? 25,
, customTitleBar ? false customTitleBar ? false,
}: }:
let let
inherit (lib) optionalString assertMsg; inherit (lib) optionalString assertMsg;
@ -24,8 +25,7 @@ let
in in
assert assertMsg (trayStyle >= 1 && trayStyle <= 3) "Tray style must be withing 1 and 3"; 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"; assert assertMsg (vibeAnimationMaxFps >= 0) "Vibe animation max FPS must be greater then 0";
stdenvNoCC.mkDerivation stdenvNoCC.mkDerivation {
{
name = "yandex-music"; name = "yandex-music";
inherit (version_info.ym) version; inherit (version_info.ym) version;
@ -44,8 +44,8 @@ stdenvNoCC.mkDerivation
desktopItem = ../templates/desktop; desktopItem = ../templates/desktop;
ymScript = ../templates/yandex-music.sh; ymScript = ../templates/yandex-music.sh;
src = src =
if ymExe != null if ymExe != null then
then ymExe ymExe
else else
fetchurl { fetchurl {
url = version_info.ym.exe_link; url = version_info.ym.exe_link;
@ -61,16 +61,21 @@ stdenvNoCC.mkDerivation
''; '';
dontPatch = true; dontPatch = true;
config ='' config =
''
ELECTRON_ARGS="${electronArguments}" ELECTRON_ARGS="${electronArguments}"
VIBE_ANIMATION_MAX_FPS=${toString vibeAnimationMaxFps} VIBE_ANIMATION_MAX_FPS=${toString vibeAnimationMaxFps}
'' + optionalString trayEnabled '' ''
+ optionalString trayEnabled ''
TRAY_ENABLED=${toString trayStyle} TRAY_ENABLED=${toString trayStyle}
'' + optionalString trayAlways '' ''
+ optionalString trayAlways ''
ALWAYS_LEAVE_TO_TRAY=1 ALWAYS_LEAVE_TO_TRAY=1
'' + optionalString devTools '' ''
+ optionalString devTools ''
DEV_TOOLS=1 DEV_TOOLS=1
'' + optionalString customTitleBar '' ''
+ optionalString customTitleBar ''
CUSTOM_TITLE_BAR=1 CUSTOM_TITLE_BAR=1
''; '';
@ -101,7 +106,10 @@ stdenvNoCC.mkDerivation
homepage = "https://music.yandex.ru/"; homepage = "https://music.yandex.ru/";
downloadPage = "https://music.yandex.ru/download/"; downloadPage = "https://music.yandex.ru/download/";
license = lib.licenses.unfree; license = lib.licenses.unfree;
platforms = [ "x86_64-linux" "aarch64-linux" ]; platforms = [
"x86_64-linux"
"aarch64-linux"
];
maintainers = [ maintainers = [
{ {
name = "Yury Shvedov"; name = "Yury Shvedov";

View File

@ -1,19 +1,27 @@
{ yandex-music-with {
, isHm ? false yandex-music-with,
isHm ? false,
}:
{
lib,
pkgs,
config,
...
}: }:
{ lib, pkgs, config, ... }:
let let
cfg = config.programs.yandex-music; cfg = config.programs.yandex-music;
in in
{ {
imports = [{ imports = [
{
nixpkgs.overlays = [ nixpkgs.overlays = [
(final: prev: { (final: prev: {
yandex-music = yandex-music-with prev; yandex-music = yandex-music-with prev;
}) })
]; ];
}]; }
];
options = { options = {
programs.yandex-music = { programs.yandex-music = {