mirror of
https://github.com/martinvonz/jj.git
synced 2024-12-28 15:34:22 +00:00
feat(nix): enable watchman support in nix package
Summary: Nix packages tend to come "full extra pack of batteries"-included, so adding watchman support makes sense. I'll also want it for my own experiments. Signed-off-by: Austin Seipp <aseipp@pobox.com> Change-Id: Ia99757bf7a39814529525efe423d527b
This commit is contained in:
parent
6f15a27079
commit
cd4637e51c
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@
|
||||||
pname = "jujutsu";
|
pname = "jujutsu";
|
||||||
version = "unstable-${self.shortRev or "dirty"}";
|
version = "unstable-${self.shortRev or "dirty"}";
|
||||||
buildNoDefaultFeatures = true;
|
buildNoDefaultFeatures = true;
|
||||||
buildFeatures = [];
|
buildFeatures = [ "watchman" ];
|
||||||
cargoBuildFlags = ["--bin" "jj"]; # don't build and install the fake editors
|
cargoBuildFlags = ["--bin" "jj"]; # don't build and install the fake editors
|
||||||
useNextest = true;
|
useNextest = true;
|
||||||
src = filterSrc ./. [
|
src = filterSrc ./. [
|
||||||
|
|
Loading…
Reference in a new issue