Make git revision available for nix flake builds (#12331)

This commit is contained in:
0rphee 2024-12-25 11:26:53 -06:00 committed by GitHub
parent c262fe41ab
commit 7b9b9329b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -20,7 +20,8 @@ fn main() {
.output()
.ok()
.filter(|output| output.status.success())
.and_then(|x| String::from_utf8(x.stdout).ok());
.and_then(|x| String::from_utf8(x.stdout).ok())
.or_else(|| option_env!("HELIX_NIX_BUILD_REV").map(|s| s.to_string()));
let calver = get_calver();
let version: Cow<_> = match &git_hash {