diff options
author | Aylur <[email protected]> | 2024-12-21 21:43:10 +0100 |
---|---|---|
committer | Aylur <[email protected]> | 2024-12-21 21:43:10 +0100 |
commit | c8e705a7999e2d36e137771e38aa443c3ed5416d (patch) | |
tree | 5ff09ef595ba4c18567c77f384f3699351f84f2d | |
parent | e0a6b7fc5ae38f13e5c110956bb94ac3b41bfb14 (diff) |
nix: fix river build
-rw-r--r-- | lib/river/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/river/default.nix b/lib/river/default.nix index 99f09dd..15c6eb4 100644 --- a/lib/river/default.nix +++ b/lib/river/default.nix @@ -12,4 +12,10 @@ mkAstalPkg { authors = "kotontrion"; gir-suffix = "River"; description = "IPC client for River"; + + postUnpack = '' + rm -rf $sourceRoot/subprojects + mkdir -p $sourceRoot/subprojects + cp -r --remove-destination ${../wayland-glib} $sourceRoot/subprojects/wayland-glib + ''; } |