5a38e15e6d
srcOnly applies patches, but the resulting derivation still had the patches attribute, causing patchPhase to apply them again. Clear patches after srcOnly to prevent double-application.
9 lines
165 B
Diff
9 lines
165 B
Diff
--- a/app/Main.hs
|
|
+++ b/app/Main.hs
|
|
@@ -1,4 +1,4 @@
|
|
module Main where
|
|
|
|
main :: IO ()
|
|
-main = putStrLn "Hello, Haskell!"
|
|
+main = putStrLn "Hello, Patched Haskell!"
|