forked from github/schildichat-desktop
31 lines
904 B
Nix
31 lines
904 B
Nix
{
|
|
description = "The SchildiChat Matrix client";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
|
|
|
|
outputs = { self, nixpkgs }: let
|
|
systems = [ "x86_64-linux" "i686-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
|
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
|
|
in {
|
|
packages = forAllSystems(system: {
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
schildichat-web = import ./nix/schildichat-web.nix {
|
|
inherit (final.darwin.apple_sdk.frameworks) Security AppKit CoreServices;
|
|
inherit pkgs;
|
|
};
|
|
|
|
schildichat-desktop = import ./nix/schildichat-desktop.nix {
|
|
inherit (final.darwin.apple_sdk.frameworks) Security AppKit CoreServices;
|
|
inherit pkgs;
|
|
};
|
|
|
|
schildichat-desktop-wayland = self.packages.${system}.schildichat-desktop {
|
|
useWayland = true;
|
|
};
|
|
|
|
default = self.packages.${system}.schildichat-desktop
|
|
});
|
|
};
|
|
}
|