the curses askpass is cool but it just. doesn't work well, especially when there are multiple tabs open in windows terminal which completely breaks it beyond belief. so yeah, bye bye
29 lines
798 B
Nix
29 lines
798 B
Nix
inputs: final: prev: {
|
|
idea-ultimate-fixed = prev.callPackage ./idea-fixed.nix { };
|
|
|
|
vencord = prev.vencord.overrideAttrs (old: rec {
|
|
version = "${old.version}+git.${inputs.vencord.shortRev}";
|
|
src = inputs.vencord;
|
|
|
|
env = old.env // {
|
|
VENCORD_REMOTE = "Vendicated/Vencord";
|
|
VENCORD_HASH = src.shortRev;
|
|
};
|
|
|
|
pnpmDeps = old.pnpmDeps.overrideAttrs (_: {
|
|
outputHash = "sha256-ZUwtNtOmxjhOBpYB7vuytunGBRSuVxdlQsceRmeyhhI=";
|
|
outputHashAlgo = "sha256";
|
|
});
|
|
|
|
ventex = prev.fetchFromGitHub {
|
|
owner = "vgskye";
|
|
repo = "ventex";
|
|
rev = "158c14e7d88acb140a71766c514d8a3724d260cd";
|
|
hash = "sha256-Svc8dI2weFcqPSk064t/pL/4Hopn6/mWP6cIrT+FIr8=";
|
|
};
|
|
|
|
postConfigure = ''
|
|
cp -r ${ventex} src/plugins/ventex
|
|
'';
|
|
});
|
|
}
|