overlay: nheko to the latest

This commit is contained in:
Aaron Bieber 2022-09-12 07:18:48 -06:00
parent 658ca7ec07
commit ba79d8f535
No known key found for this signature in database
2 changed files with 15 additions and 2 deletions

View File

@ -214,7 +214,7 @@ in {
linphone
logseq
mu
#nheko
nheko
nix-index
nix-review
nix-top

View File

@ -2,6 +2,19 @@
{
nixpkgs.overlays = if isUnstable then [
# pr:190714
(self: super: {
nheko = super.nheko.overrideAttrs (old: {
version = "0.10.1-1";
src = super.fetchFromGitHub {
owner = "Nheko-Reborn";
repo = "nheko";
sha256 = "sha256-Bpf38BAGfvmVyrAptIsQ9HaRUopqvytko6unlWLooUo";
rev = "0.10.1-1";
};
});
})
(self: super: {
zig = super.zig.overrideAttrs (old: {
version = "0.10.0-dev.35e0ff7";
@ -27,7 +40,7 @@
});
})
# https://github.com/NixOS/nixpkgs/pull/186130
# TODO: send PR
(self: super: {
tidal-hifi = super.tidal-hifi.overrideAttrs (old: {
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.imagemagick ];