diff options
| author | Chris Wells <chris@mathematicaster.org> | 2025-12-01 14:26:11 -0600 |
|---|---|---|
| committer | Chris Wells <chris@mathematicaster.org> | 2025-12-01 14:26:11 -0600 |
| commit | 6b296c1e099002b9ef16e3577ae78775faaa70a0 (patch) | |
| tree | 6b0b442db822c80ad4156e8c2cd92578fa85050a | |
| parent | 511d2a30dee6c779275f9132f292401515c9128f (diff) | |
| download | cooklang-nix-6b296c1e099002b9ef16e3577ae78775faaa70a0.tar cooklang-nix-6b296c1e099002b9ef16e3577ae78775faaa70a0.tar.gz cooklang-nix-6b296c1e099002b9ef16e3577ae78775faaa70a0.tar.bz2 cooklang-nix-6b296c1e099002b9ef16e3577ae78775faaa70a0.tar.lz cooklang-nix-6b296c1e099002b9ef16e3577ae78775faaa70a0.tar.xz cooklang-nix-6b296c1e099002b9ef16e3577ae78775faaa70a0.tar.zst cooklang-nix-6b296c1e099002b9ef16e3577ae78775faaa70a0.zip | |
Updated derivation very slightly
| -rw-r--r-- | pkgs/chef/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/chef/default.nix b/pkgs/chef/default.nix index 0cbbebb..f4f2870 100644 --- a/pkgs/chef/default.nix +++ b/pkgs/chef/default.nix @@ -1,4 +1,4 @@ -{ rustPlatform, fetchFromGitHub, lib, installShellFiles, gitUpdater, serve ? true }: +{ rustPlatform, fetchFromGitHub, lib, installShellFiles, gitUpdater, withWebserver ? true }: rustPlatform.buildRustPackage rec { pname = "cooklang-chef"; version = "0.10.1"; @@ -12,7 +12,7 @@ rustPlatform.buildRustPackage rec { cargoLock.lockFile = "${src}/Cargo.lock"; # optionally disable the webserver - buildNoDefaultFeatures = !serve; + buildNoDefaultFeatures = !withWebserver; nativeBuildInputs = [ installShellFiles |
