28 lines
835 B
Nix
28 lines
835 B
Nix
inputs: final: prev: {
|
|
idea-ultimate-fixed = prev.callPackage ./idea-fixed.nix { };
|
|
|
|
urbackup-client = prev.urbackup-client.overrideAttrs (old: {
|
|
nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [ prev.autoreconfHook ];
|
|
|
|
patches = old.patches or [ ] ++ [ ./urbackup-client-install.patch ];
|
|
|
|
configureFlags = old.configureFlags or [ ] ++ [
|
|
"--localstatedir=/var/lib"
|
|
];
|
|
});
|
|
|
|
vencord = prev.vencord.overrideAttrs (old: {
|
|
version = "${old.version}+git.${inputs.vencord.shortRev}";
|
|
src = inputs.vencord;
|
|
|
|
env = old.env // {
|
|
VENCORD_REMOTE = "Vendicated/Vencord";
|
|
VENCORD_HASH = inputs.vencord.shortRev;
|
|
};
|
|
|
|
pnpmDeps = old.pnpmDeps.overrideAttrs (_: {
|
|
outputHash = "sha256-ZUwtNtOmxjhOBpYB7vuytunGBRSuVxdlQsceRmeyhhI=";
|
|
outputHashAlgo = "sha256";
|
|
});
|
|
});
|
|
}
|