From 6eb3dc1f9ded7c9455d7c54bcd73d246f8aa8d1b Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Tue, 31 Mar 2026 16:53:53 -0400 Subject: [PATCH] fix: postPatch issue due to version override --- nix/packages/rocksdb.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/packages/rocksdb.nix b/nix/packages/rocksdb.nix index a7b815ba7..4f5c9224b 100644 --- a/nix/packages/rocksdb.nix +++ b/nix/packages/rocksdb.nix @@ -28,4 +28,7 @@ # We have this already at https://forgejo.ellis.link/continuwuation/rocksdb/commit/a935c0273e1ba44eacf88ce3685a9b9831486155 # Unsetting `patches` so we don't have to revert it and make this nix exclusive patches = [ ]; + + # Unset postPatch, as our version override breaks version-specific sed calls in the original package + postPatch = ""; })