From 667f04ab619c08bfbfcc09b94ae565a3a75ce809 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Fri, 8 Sep 2023 17:49:30 -0500 Subject: [PATCH] chore(nix): add 'default' features to list of cargo features Summary: By default, and to be explicit, the local flake turns off default features. But, 70f6e0a turned off watchman support for the Nix build by accident. Enable default features so this doesn't happen again. Signed-off-by: Austin Seipp Change-Id: Ib7dd935eceab328fa5b0333b10368377 --- flake.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/flake.nix b/flake.nix index 212f68144b..ae48a31765 100644 --- a/flake.nix +++ b/flake.nix @@ -48,7 +48,6 @@ jujutsu = ourRustPlatform.buildRustPackage rec { pname = "jujutsu"; version = "unstable-${self.shortRev or "dirty"}"; - buildNoDefaultFeatures = true; buildFeatures = [ "packaging" ]; cargoBuildFlags = ["--bin" "jj"]; # don't build and install the fake editors useNextest = true;