mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 19:46:17 +01:00
18 lines
526 B
Nix
18 lines
526 B
Nix
|
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
|
||
|
#
|
||
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
||
|
{
|
||
|
name = "fufexan-discord-canary";
|
||
|
systems = [ "x86_64-linux" ];
|
||
|
overlay = {
|
||
|
fufexan-dotfiles,
|
||
|
nixpkgs,
|
||
|
} @ inputs: final: prev: {
|
||
|
fufexan-discord-canary = (import (fufexan-dotfiles + "/pkgs/default.nix") inputs final prev).discord-electron-openasar.override {
|
||
|
isWayland = false;
|
||
|
inherit (prev.discord-canary) src pname version;
|
||
|
binaryName = "DiscordCanary";
|
||
|
};
|
||
|
};
|
||
|
}
|