diff --git a/default.nix b/default.nix index 41fa9e0..e159b35 100644 --- a/default.nix +++ b/default.nix @@ -88,7 +88,7 @@ let phases = [ "unpackPhase" "patchPhase" "installPhase" ]; patches = [ (substituteAll { - src = ./fix-paths.patch; + src = ./patches/fix-paths.patch; private = builtins.toString doomPrivateDir; }) ]; @@ -176,7 +176,7 @@ let patches = [ (substituteAll { - src = ./nix-integration.patch; + src = ./patches/nix-integration.patch; local = doomLocal; }) ]; diff --git a/overrides.nix b/overrides.nix index 1ebb12e..97afb6f 100644 --- a/overrides.nix +++ b/overrides.nix @@ -9,7 +9,7 @@ self: super: { } // args); evil-escape = super.evil-escape.overrideAttrs (esuper: { - patches = [ ./evil-escape.patch ]; + patches = [ ./patches/evil-escape.patch ]; }); doom-snippets = self.straightBuild { @@ -80,7 +80,7 @@ self: super: { }; restart-emacs = super.restart-emacs.overrideAttrs (esuper: { - patches = [ ./restart-emacs.patch ]; + patches = [ ./patches/restart-emacs.patch ]; }); revealjs = self.straightBuild { diff --git a/evil-escape.patch b/patches/evil-escape.patch similarity index 100% rename from evil-escape.patch rename to patches/evil-escape.patch diff --git a/fix-paths.patch b/patches/fix-paths.patch similarity index 100% rename from fix-paths.patch rename to patches/fix-paths.patch diff --git a/nix-integration.patch b/patches/nix-integration.patch similarity index 100% rename from nix-integration.patch rename to patches/nix-integration.patch diff --git a/restart-emacs.patch b/patches/restart-emacs.patch similarity index 100% rename from restart-emacs.patch rename to patches/restart-emacs.patch