Skip to content

Commit

Permalink
git-cinnabar: disable version check
Browse files Browse the repository at this point in the history
Not very useful when installed via Nix, and is generally undesirable
telemetry. This has the slight downside that new default features may
need to be audited upon version updates, current upstream master has
more upstream features but they are for determining the version via Git,
which also doesn’t apply to us.
  • Loading branch information
amarshall committed Jan 3, 2025
1 parent 88195a9 commit 31627c7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkgs/applications/version-management/git-cinnabar/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ stdenv.mkDerivation (finalAttrs: {

enableParallelBuilding = true;

# Disable automated version-check
buildNoDefaultFeatures = true;
checkNoDefaultFeatures = true;

installPhase = ''
runHook preInstall
Expand Down

0 comments on commit 31627c7

Please sign in to comment.