summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Kurnevsky <kurnevsky@gmail.com>2023-09-15 10:10:22 +0200
committerGitHub <noreply@github.com>2023-09-15 11:10:22 +0300
commit235f7c193b02dacfb56319e41a28684b3a2c6db0 (patch)
tree9bfd346266381046c0bfb2f8fe41a9a88e30194e
parenta51b68765799e75e17c7622f376bfbeb66f1bd70 (diff)
flake : use pkg-config instead of pkgconfig (#3188)
pkgconfig is an alias, it got removed from nixpkgs: https://github.com/NixOS/nixpkgs/blob/295a5e1e2bacd6e246db8b2bb35d2a9415883224/pkgs/top-level/aliases.nix#L1408
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 27223c7b..b0fb8642 100644
--- a/flake.nix
+++ b/flake.nix
@@ -34,7 +34,7 @@
with pkgs; [ openblas ]
);
pkgs = import nixpkgs { inherit system; };
- nativeBuildInputs = with pkgs; [ cmake ninja pkgconfig ];
+ nativeBuildInputs = with pkgs; [ cmake ninja pkg-config ];
llama-python =
pkgs.python3.withPackages (ps: with ps; [ numpy sentencepiece ]);
postPatch = ''