aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-10-18 09:01:48 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2022-10-18 09:37:59 +0200
commit722194405a8333a70b44cc204dabc8a590a6b3fd (patch)
tree56da37a1332fb09bc995d34f4acac822d4201212 /flake.nix
parent0868a5e534e11190cec4fa1497ca0741ab0e762a (diff)
downloadPrismLauncher-722194405a8333a70b44cc204dabc8a590a6b3fd.tar.gz
PrismLauncher-722194405a8333a70b44cc204dabc8a590a6b3fd.tar.bz2
PrismLauncher-722194405a8333a70b44cc204dabc8a590a6b3fd.zip
refactor: initial rebrand
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index 93192725..c6207999 100644
--- a/flake.nix
+++ b/flake.nix
@@ -4,7 +4,7 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-compat = { url = "github:edolstra/flake-compat"; flake = false; };
- libnbtplusplus = { url = "github:PolyMC/libnbtplusplus"; flake = false; };
+ libnbtplusplus = { url = "github:PlaceholderMC/libnbtplusplus"; flake = false; };
tomlplusplus = { url = "github:marzer/tomlplusplus"; flake = false; };
};
@@ -23,14 +23,14 @@
pkgs = forAllSystems (system: nixpkgs.legacyPackages.${system});
packagesFn = pkgs: rec {
- polymc = pkgs.libsForQt5.callPackage ./nix { inherit version self libnbtplusplus tomlplusplus; };
- polymc-qt6 = pkgs.qt6Packages.callPackage ./nix { inherit version self libnbtplusplus tomlplusplus; };
+ prismlauncher = pkgs.libsForQt5.callPackage ./nix { inherit version self libnbtplusplus tomlplusplus; };
+ prismlauncher-qt6 = pkgs.qt6Packages.callPackage ./nix { inherit version self libnbtplusplus tomlplusplus; };
};
in
{
packages = forAllSystems (system:
let packages = packagesFn pkgs.${system}; in
- packages // { default = packages.polymc; }
+ packages // { default = packages.prismlauncher; }
);
overlay = final: packagesFn;