Update wee-slack

This commit is contained in:
Alexander Bantyev 2021-02-25 11:10:02 +03:00
parent 8a653d6e6a
commit 316c522c19
Signed by: balsoft
GPG Key ID: E081FF12ADCB4AD5
3 changed files with 24 additions and 0 deletions

View File

@ -379,6 +379,7 @@
"nixpkgs-wayland": "nixpkgs-wayland", "nixpkgs-wayland": "nixpkgs-wayland",
"simple-nixos-mailserver": "simple-nixos-mailserver", "simple-nixos-mailserver": "simple-nixos-mailserver",
"simple-osd-daemons": "simple-osd-daemons", "simple-osd-daemons": "simple-osd-daemons",
"wee-slack": "wee-slack",
"weechat-notify-send": "weechat-notify-send", "weechat-notify-send": "weechat-notify-send",
"weechat-scripts": "weechat-scripts", "weechat-scripts": "weechat-scripts",
"yt-utilities": "yt-utilities" "yt-utilities": "yt-utilities"
@ -434,6 +435,22 @@
"type": "github" "type": "github"
} }
}, },
"wee-slack": {
"flake": false,
"locked": {
"lastModified": 1614008547,
"narHash": "sha256-FVU5ttWtqheqYB2V5CUIokLoSaGtPnFOk5/K9ir7fA0=",
"owner": "wee-slack",
"repo": "wee-slack",
"rev": "fef777b7dced08c4299c8aa2d3a8065371194b21",
"type": "github"
},
"original": {
"owner": "wee-slack",
"repo": "wee-slack",
"type": "github"
}
},
"weechat-notify-send": { "weechat-notify-send": {
"flake": false, "flake": false,
"locked": { "locked": {

View File

@ -47,6 +47,8 @@
}; };
nixos-fhs-compat.url = "github:balsoft/nixos-fhs-compat"; nixos-fhs-compat.url = "github:balsoft/nixos-fhs-compat";
simple-osd-daemons.url = "github:balsoft/simple-osd-daemons"; simple-osd-daemons.url = "github:balsoft/simple-osd-daemons";
wee-slack.url = "github:wee-slack/wee-slack";
wee-slack.flake = false;
}; };
outputs = { nixpkgs, nix, self, deploy-rs, ... }@inputs: { outputs = { nixpkgs, nix, self, deploy-rs, ... }@inputs: {

View File

@ -36,6 +36,11 @@ in {
nerdfonts = nur.balsoft.pkgs.roboto-mono-nerd; nerdfonts = nur.balsoft.pkgs.roboto-mono-nerd;
weechatScripts.wee-slack = super.weechatScripts.wee-slack.overrideAttrs (oa: {
src = inputs.wee-slack;
patches = [(builtins.elemAt oa.patches 0)];
});
# inherit (inputs.nixpkgs-mesa.legacyPackages.x86_64-linux) sway mesa_drivers; # inherit (inputs.nixpkgs-mesa.legacyPackages.x86_64-linux) sway mesa_drivers;
}) })
]; ];