diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 229724f..ae4aebd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,11 +58,11 @@ jobs: uses: cachix/install-nix-action@v22 - uses: DeterminateSystems/magic-nix-cache-action@v2 - - - name: Build yandexmusic - run: NIXPKGS_ALLOW_UNFREE=1 nix build --impure .#yandexmusic - - name: Build yandexmusic background - run: NIXPKGS_ALLOW_UNFREE=1 nix build --impure .#yandexmusic-background - - name: Build yandexmusic without flakes binaries - run: NIXPKGS_ALLOW_UNFREE=1 nix build --impure .#yandexmusic-noflakes + + - name: Build yandexmusic + run: nix build --impure .#yandexmusic + - name: Build yandexmusic background + run: nix build --impure .#yandexmusic-background + - name: Build yandexmusic without flakes binaries + run: nix build --impure .#yandexmusic-noflakes diff --git a/README.md b/README.md index 2bc14f4..f2590d3 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ Native YandexMusic client for Linux. Built using repacking of Windows client (El - [ASAR archive](#asar-archive) - [Arch Linux](#arch-linux-1) - [Debian/Ubuntu](#debianubuntu-1) +- [Run with nix](#run-with-nix) + - [Run with flakes](#run-with-flakes) + - [Run old style](#run-old-style) + - [Install to NixOS](#install-to-nixos) ## Screenshots ![image](https://github.com/cucumber-sp/yandex-music-linux/assets/100789522/ab2f69ee-efc4-4a33-8110-131b4c4ff4de) @@ -28,7 +32,7 @@ Native YandexMusic client for Linux. Built using repacking of Windows client (El #### AUR -You can obtain the latest version of package from `AUR` using one of the [AUR Helpers](https://wiki.archlinux.org/title/AUR_helpers). Then install it with `yandexmusic` as package name. +You can obtain the latest version of package from `AUR` using one of the [AUR Helpers](https://wiki.archlinux.org/title/AUR_helpers). Then install it with `yandexmusic` as package name. For this example I will use [yay](https://github.com/Jguer/yay) @@ -63,7 +67,7 @@ Download prebuilt binary package from [Releases](https://github.com/cucumber-sp/ Then you can install it with the following command ``` -dpkg -i yandexmusic__.deb +dpkg -i yandexmusic__.deb ``` *** @@ -129,3 +133,32 @@ You can build `.deb` binary package using the following command: ``` sh build_deb.sh [-a default=x64] ``` + +*** + +## Run with nix + +The `yandexmusic` package has unlicensed license, so you need to have +`allowUnfree` option enabled. + +### Run with flakes + +Execute next to build and run yandex music directly from github + +``` +nix run github:cucumber-sp/yandex-music-linux +``` + +### Run old style + +Execute next in this repository to build yandexmusic package without using +flakes. + +``` +nix-build --expr '(import {}).callPackage ./nix {}' +``` + +### Install to NixOS + +This flake exports `modules` list. Append it to your system modules and add +`yandexmusic` package to `environment.systemPackages`.