Index: helix-loader/build.rs
--- helix-loader/build.rs.orig
+++ helix-loader/build.rs
@@ -15,6 +15,9 @@ fn get_calver() -> String {
 }
 
 fn main() {
+    #[cfg(target_os = "openbsd")]
+    let git_hash: Option<&String> = None;
+    #[cfg(not(target_os = "openbsd"))]
     let git_hash = Command::new("git")
         .args(["rev-parse", "HEAD"])
         .output()
