about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/op/openobserve/build.rs.patch
blob: 1cfb91c7c12b733259f857e94f730a771c19bc6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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(())
 }