about summary refs log tree commit diff
path: root/nixpkgs/pkgs/misc/vencord/replace-git.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/misc/vencord/replace-git.patch')
-rw-r--r--nixpkgs/pkgs/misc/vencord/replace-git.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/nixpkgs/pkgs/misc/vencord/replace-git.patch b/nixpkgs/pkgs/misc/vencord/replace-git.patch
deleted file mode 100644
index 829321638bf2..000000000000
--- a/nixpkgs/pkgs/misc/vencord/replace-git.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/scripts/build/common.mjs b/scripts/build/common.mjs
-index 7ff599a..85b3bfa 100644
---- a/scripts/build/common.mjs
-+++ b/scripts/build/common.mjs
-@@ -24,7 +24,7 @@ import { promisify } from "util";
- 
- export const watch = process.argv.includes("--watch");
- export const isStandalone = JSON.stringify(process.argv.includes("--standalone"));
--export const gitHash = execSync("git rev-parse --short HEAD", { encoding: "utf-8" }).trim();
-+export const gitHash = "v@version@";
- export const banner = {
-     js: `
- // Vencord ${gitHash}
-@@ -124,11 +124,7 @@ export const gitRemotePlugin = {
-             namespace: "git-remote", path: args.path
-         }));
-         build.onLoad({ filter, namespace: "git-remote" }, async () => {
--            const res = await promisify(exec)("git remote get-url origin", { encoding: "utf-8" });
--            const remote = res.stdout.trim()
--                .replace("https://github.com/", "")
--                .replace("git@github.com:", "")
--                .replace(/.git$/, "");
-+            const remote = "Vendicated/Vencord";
- 
-             return { contents: `export default "${remote}"` };
-         });