honk: fix filename in postPatch

This commit is contained in:
Pol Dellaiera
2023-08-19 12:37:00 +02:00
parent 57486d0e5e
commit 7e0f47ff11
+1 -1
View File
@@ -18,7 +18,7 @@ buildGoModule rec {
# working out of the box. This value can be overriden by the user, by
# providing the `-viewdir` parameter in the command line.
postPatch = ''
substituteInPlace honk.go --replace \
substituteInPlace main.go --replace \
"var viewDir = \".\"" \
"var viewDir = \"$out/share/honk\""
'';