mirror of
https://github.com/SchildiChat/schildichat-desktop.git
synced 2025-03-26 10:07:47 +01:00
19 lines
677 B
Nix
19 lines
677 B
Nix
final: prev: {
|
|
cleanSchildichatDesktopSource = src: with final.lib; cleanSourceWith {
|
|
filter = name: type: cleanSourceFilter name type
|
|
&& !(hasInfix "/node_modules/" name)
|
|
&& !(hasInfix "/nix/" name && hasSuffix ".nix" name)
|
|
;
|
|
inherit src;
|
|
};
|
|
schildichat-web = final.callPackage ./schildichat-web.nix {
|
|
};
|
|
schildichat-desktop = final.callPackage ./schildichat-desktop.nix {
|
|
inherit (final.darwin.apple_sdk.frameworks) Security AppKit CoreServices;
|
|
};
|
|
schildichat-desktop-wayland = final.callPackage ./schildichat-desktop.nix {
|
|
inherit (final.darwin.apple_sdk.frameworks) Security AppKit CoreServices;
|
|
useWayland = true;
|
|
};
|
|
}
|