From 2e8b824da7e5a8a1bde857d6f0bd7366a6f2a9ba 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;