From e1de9a317d5e3ac1a501e25be58e0f617de4d085 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 28 May 2023 22:30:53 -0400 Subject: [PATCH] make-tarball.nix: support an absent revcount When run out of a tarball, it is possible for revCount to be missing. --- pkgs/top-level/make-tarball.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix index abc121e29dc7..0f1c92be89bc 100644 --- a/pkgs/top-level/make-tarball.nix +++ b/pkgs/top-level/make-tarball.nix @@ -19,7 +19,7 @@ pkgs.releaseTools.sourceTarball { versionSuffix = "pre${ if nixpkgs ? lastModified then builtins.substring 0 8 (nixpkgs.lastModifiedDate or nixpkgs.lastModified) - else toString nixpkgs.revCount}.${nixpkgs.shortRev or "dirty"}"; + else toString (nixpkgs.revCount or 0)}.${nixpkgs.shortRev or "dirty"}"; buildInputs = with pkgs; [ nix.out jq lib-tests brotli ];