diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-11-26 14:03:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-26 14:03:51 +0100 |
commit | 80ff0b141804d1f4f44af10595277aaef9615574 (patch) | |
tree | 34f4df06f8372f90f09e2a4aaaa57086dd3f62de /flake.nix | |
parent | fd8b4c536807c2fd40cd9ca3e694b602684a94a6 (diff) | |
parent | f601135cc0154236e3b26b2850f0cf633bcef2f8 (diff) | |
download | PrismLauncher-80ff0b141804d1f4f44af10595277aaef9615574.tar.gz PrismLauncher-80ff0b141804d1f4f44af10595277aaef9615574.tar.bz2 PrismLauncher-80ff0b141804d1f4f44af10595277aaef9615574.zip |
Merge pull request #492 from Scrumplex/update-nix
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,8 +23,8 @@ pkgs = forAllSystems (system: nixpkgs.legacyPackages.${system}); packagesFn = pkgs: rec { - prismlauncher = pkgs.libsForQt5.callPackage ./nix { inherit version self libnbtplusplus tomlplusplus; }; - prismlauncher-qt6 = pkgs.qt6Packages.callPackage ./nix { inherit version self libnbtplusplus tomlplusplus; }; + prismlauncher-qt5 = pkgs.libsForQt5.callPackage ./nix { inherit version self libnbtplusplus tomlplusplus; }; + prismlauncher = pkgs.qt6Packages.callPackage ./nix { inherit version self libnbtplusplus tomlplusplus; }; }; in { |