Index: helix-loader/build.rs
--- helix-loader/build.rs.orig
+++ helix-loader/build.rs
@@ -7,6 +7,9 @@ const MINOR: &str = env!("CARGO_PKG_VERSION_MINOR");
 const PATCH: &str = env!("CARGO_PKG_VERSION_PATCH");
 
 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()
