Merge pull request #29 from cidkidnix/develop
This commit is contained in:
commit
541f26b33a
@ -13,6 +13,7 @@ Several source build packages are available, along with experimental pre-built g
|
|||||||
<a href='https://flathub.org/apps/details/org.polymc.PolyMC'><img width='240' alt='Download on Flathub' src='https://flathub.org/assets/badges/flathub-badge-en.png'/></a>
|
<a href='https://flathub.org/apps/details/org.polymc.PolyMC'><img width='240' alt='Download on Flathub' src='https://flathub.org/assets/badges/flathub-badge-en.png'/></a>
|
||||||
<br>
|
<br>
|
||||||
[![AUR package](https://img.shields.io/aur/version/polymc-git)](https://aur.archlinux.org/packages/polymc-git/)
|
[![AUR package](https://img.shields.io/aur/version/polymc-git)](https://aur.archlinux.org/packages/polymc-git/)
|
||||||
|
- A [Nix](packages/nix/NIX.md) derivation is available in repo.
|
||||||
- A Gentoo ebuild is available in the [swirl](https://git.swurl.xyz/swirl/ebuilds) overlay, named `games-action/polymc`. Check the README for instructions on how to add the overlay.
|
- A Gentoo ebuild is available in the [swirl](https://git.swurl.xyz/swirl/ebuilds) overlay, named `games-action/polymc`. Check the README for instructions on how to add the overlay.
|
||||||
- The Flatpak can be built using [this source](https://github.com/flathub/org.polymc.PolyMC).
|
- The Flatpak can be built using [this source](https://github.com/flathub/org.polymc.PolyMC).
|
||||||
- An RPM package is available, by going to the `packages/rpm` directory and running `./makerpm.sh`.
|
- An RPM package is available, by going to the `packages/rpm` directory and running `./makerpm.sh`.
|
||||||
|
31
packages/nix/NIX.md
Normal file
31
packages/nix/NIX.md
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
# How to import
|
||||||
|
|
||||||
|
To import with flakes use
|
||||||
|
```nix
|
||||||
|
inputs = {
|
||||||
|
polymc.url = "github:PolyMC/PolyMC";
|
||||||
|
};
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
nixpkgs.overlays = [ inputs.polymc.overlay.${system} ]; ## Within configuration.nix
|
||||||
|
environment.systemPackages = with pkgs; [ polymc ]; ##
|
||||||
|
```
|
||||||
|
|
||||||
|
To import without flakes use channels:
|
||||||
|
|
||||||
|
```
|
||||||
|
nix-channel --add https://github.com/PolyMC/PolyMC/archive/master.tar.gz polymc
|
||||||
|
nix-channel --update polymc
|
||||||
|
nix-env -iA polymc
|
||||||
|
```
|
||||||
|
|
||||||
|
or alternatively you can use
|
||||||
|
|
||||||
|
```
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(import (builtins.fetchTarball "https://github.com/PolyMC/PolyMC/archive/develop.tar.gz")).overlay
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [ polymc ];
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user