update nheko
This commit is contained in:
parent
7db6eb7179
commit
c44f638208
28
flake.lock
generated
28
flake.lock
generated
@ -318,6 +318,22 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"mtxclient": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1624110239,
|
||||||
|
"narHash": "sha256-JlTGwFZKQ0sJpOPtMPKY9wm11yDrdyNw9OKr7E4yBOQ=",
|
||||||
|
"owner": "nheko-reborn",
|
||||||
|
"repo": "mtxclient",
|
||||||
|
"rev": "acfff15ca153723e41cf7ef06ff82b1c24c933ef",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nheko-reborn",
|
||||||
|
"repo": "mtxclient",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"naersk": {
|
"naersk": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
@ -342,16 +358,15 @@
|
|||||||
"nheko": {
|
"nheko": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1624023535,
|
"lastModified": 1624613955,
|
||||||
"narHash": "sha256-m1gt1pUX1VnZIJzGGde52ZbKn4o44p2RM3f6sUtJcM4=",
|
"narHash": "sha256-/k/081pI0S8YHxbct1yhNqJQW4EKfu9/KsjLZ2CoQDU=",
|
||||||
"owner": "balsoft",
|
"owner": "nheko-reborn",
|
||||||
"repo": "nheko",
|
"repo": "nheko",
|
||||||
"rev": "9f798e76ede3672d91276b1be7dd20de5459c9df",
|
"rev": "36f0e044398535143f24bbf2850df9e5b2947770",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "balsoft",
|
"owner": "nheko-reborn",
|
||||||
"ref": "allow-edits-of-pending-messages",
|
|
||||||
"repo": "nheko",
|
"repo": "nheko",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
@ -606,6 +621,7 @@
|
|||||||
"impermanence": "impermanence",
|
"impermanence": "impermanence",
|
||||||
"lambda-launcher": "lambda-launcher",
|
"lambda-launcher": "lambda-launcher",
|
||||||
"materia-theme": "materia-theme",
|
"materia-theme": "materia-theme",
|
||||||
|
"mtxclient": "mtxclient",
|
||||||
"nheko": "nheko",
|
"nheko": "nheko",
|
||||||
"nix": "nix",
|
"nix": "nix",
|
||||||
"nix-direnv": "nix-direnv",
|
"nix-direnv": "nix-direnv",
|
||||||
|
@ -62,7 +62,12 @@
|
|||||||
nix-direnv = { url = "github:nix-community/nix-direnv"; };
|
nix-direnv = { url = "github:nix-community/nix-direnv"; };
|
||||||
|
|
||||||
nheko = {
|
nheko = {
|
||||||
url = "github:balsoft/nheko/allow-edits-of-pending-messages";
|
url = "github:nheko-reborn/nheko";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
mtxclient ={
|
||||||
|
url = "github:nheko-reborn/mtxclient";
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -222,8 +222,6 @@ nothing happens."
|
|||||||
(add-hook 'after-save-hook 'compile-on-save-start nil t))
|
(add-hook 'after-save-hook 'compile-on-save-start nil t))
|
||||||
(kill-local-variable 'after-save-hook)))
|
(kill-local-variable 'after-save-hook)))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
(require 'base16-theme)
|
(require 'base16-theme)
|
||||||
|
|
||||||
(defvar base16-generated-colors
|
(defvar base16-generated-colors
|
||||||
|
@ -107,13 +107,13 @@ in {
|
|||||||
|
|
||||||
nix-direnv = inputs.nix-direnv.defaultPackage.${system};
|
nix-direnv = inputs.nix-direnv.defaultPackage.${system};
|
||||||
|
|
||||||
nheko = super.nheko.overrideAttrs (oa: {
|
mtxclient = super.mtxclient.overrideAttrs (_: {
|
||||||
src = inputs.nheko;
|
src = inputs.mtxclient;
|
||||||
patches = [(self.fetchpatch {
|
|
||||||
url = "https://nheko.im/nheko-reborn/nheko/-/commit/78fb89355f189e4fb57e8d0ca0089e09547fea50.patch";
|
|
||||||
sha256 = "0lqjzv5k9cxi7sfrhj0a75vyzx1m5bzvmbvn4ckr098zilr914bb";
|
|
||||||
})] ++ oa.patches or [];
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
nheko = (super.nheko.overrideAttrs (oa: {
|
||||||
|
src = inputs.nheko;
|
||||||
|
})).override { mtxclient = self.mtxclient; };
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
nixpkgs.config = {
|
nixpkgs.config = {
|
||||||
|
Loading…
Reference in New Issue
Block a user