fix(exprs): fetch ventex in cool mode

This commit is contained in:
uku 2024-11-01 21:38:17 +01:00
parent 266cef9baf
commit e2f73b4e51
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
2 changed files with 11 additions and 130 deletions

View file

@ -12,7 +12,7 @@ vencord-input: final: prev: {
idea-ultimate-fixed = prev.callPackage ./idea-fixed.nix {};
vencord = prev.vencord.overrideAttrs (old: {
vencord = prev.vencord.overrideAttrs (old: rec {
src =
vencord-input
// {
@ -20,6 +20,15 @@ vencord-input: final: prev: {
repo = "Vencord";
};
patches = old.patches or [] ++ [./ventex.patch];
ventex = prev.fetchFromGitHub {
owner = "vgskye";
repo = "ventex";
rev = "158c14e7d88acb140a71766c514d8a3724d260cd";
hash = "sha256-Svc8dI2weFcqPSk064t/pL/4Hopn6/mWP6cIrT+FIr8=";
};
postConfigure = ''
cp -r ${ventex} src/plugins/ventex
'';
});
}