aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix59
1 files changed, 35 insertions, 24 deletions
diff --git a/flake.nix b/flake.nix
index 5615a758..f173511c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -3,35 +3,46 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
- flake-compat = { url = "github:edolstra/flake-compat"; flake = false; };
- libnbtplusplus = { url = "github:PrismLauncher/libnbtplusplus"; flake = false; };
+ flake-compat = {
+ url = "github:edolstra/flake-compat";
+ flake = false;
+ };
+ libnbtplusplus = {
+ url = "github:PrismLauncher/libnbtplusplus";
+ flake = false;
+ };
};
- outputs = { self, nixpkgs, libnbtplusplus, ... }:
- let
- # User-friendly version number.
- version = builtins.substring 0 8 self.lastModifiedDate;
-
- # Supported systems (qtbase is currently broken for "aarch64-darwin")
- supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" ];
+ outputs = {
+ self,
+ nixpkgs,
+ libnbtplusplus,
+ ...
+ }: let
+ # User-friendly version number.
+ version = builtins.substring 0 8 self.lastModifiedDate;
- # Helper function to generate an attrset '{ x86_64-linux = f "x86_64-linux"; ... }'.
- forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
+ # Supported systems (qtbase is currently broken for "aarch64-darwin")
+ supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux"];
- # Nixpkgs instantiated for supported systems.
- pkgs = forAllSystems (system: nixpkgs.legacyPackages.${system});
+ # Helper function to generate an attrset '{ x86_64-linux = f "x86_64-linux"; ... }'.
+ forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
- packagesFn = pkgs: rec {
- prismlauncher-qt5 = pkgs.libsForQt5.callPackage ./nix { inherit version self libnbtplusplus; };
- prismlauncher = pkgs.qt6Packages.callPackage ./nix { inherit version self libnbtplusplus; };
- };
- in
- {
- packages = forAllSystems (system:
- let packages = packagesFn pkgs.${system}; in
- packages // { default = packages.prismlauncher; }
- );
+ # Nixpkgs instantiated for supported systems.
+ pkgs = forAllSystems (system: nixpkgs.legacyPackages.${system});
- overlay = final: packagesFn;
+ packagesFn = pkgs: rec {
+ prismlauncher-qt5 = pkgs.libsForQt5.callPackage ./nix {inherit version self libnbtplusplus;};
+ prismlauncher = pkgs.qt6Packages.callPackage ./nix {inherit version self libnbtplusplus;};
};
+ in {
+ packages = forAllSystems (
+ system: let
+ packages = packagesFn pkgs.${system};
+ in
+ packages // {default = packages.prismlauncher;}
+ );
+
+ overlay = final: packagesFn;
+ };
}