From 1ae26759661b76bb1e1f2d55994956c5e25bf118 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Wed, 23 Jun 2021 23:07:51 +0700 Subject: [PATCH] fix --- overlays/wine-osu.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlays/wine-osu.nix b/overlays/wine-osu.nix index 3d0bd38..78be721 100644 --- a/overlays/wine-osu.nix +++ b/overlays/wine-osu.nix @@ -1,6 +1,6 @@ self: super: { wine-osu = (super.wineStaging.overrideDerivation(o: { - patches = (o.patches or []) ++ builtins.attrNames (builtins.readDir ./misc/wine); + patches = (o.patches or []) ++ builtins.map (e: ./misc/wine + ("/" + e)) (builtins.attrNames (builtins.readDir ./misc/wine)); })).override { wineRelease = "staging"; wineBuild = "wineWow";