diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-10-18 09:01:48 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-10-18 09:37:59 +0200 |
commit | 722194405a8333a70b44cc204dabc8a590a6b3fd (patch) | |
tree | 56da37a1332fb09bc995d34f4acac822d4201212 /flake.nix | |
parent | 0868a5e534e11190cec4fa1497ca0741ab0e762a (diff) | |
download | PrismLauncher-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.nix | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; |