depot/third_party/nixpkgs/pkgs/servers/monitoring/openobserve/build.rs.patch
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

29 lines
882 B
Diff

diff --git a/build.rs b/build.rs
index 0f66ace..be74fad 100644
--- a/build.rs
+++ b/build.rs
@@ -99,24 +99,5 @@ fn main() -> Result<()> {
&["proto"],
)?;
- // build information
- let output = Command::new("git")
- .args(["describe", "--tags", "--abbrev=0"])
- .output()
- .unwrap();
- let git_tag = String::from_utf8(output.stdout).unwrap();
- println!("cargo:rustc-env=GIT_VERSION={git_tag}");
-
- let output = Command::new("git")
- .args(["rev-parse", "HEAD"])
- .output()
- .unwrap();
- let git_commit = String::from_utf8(output.stdout).unwrap();
- println!("cargo:rustc-env=GIT_COMMIT_HASH={git_commit}");
-
- let now: DateTime<Utc> = Utc::now();
- let build_date = now.to_rfc3339_opts(SecondsFormat::Secs, true);
- println!("cargo:rustc-env=GIT_BUILD_DATE={build_date}");
-
Ok(())
}