diff options
author | Evgeny Kurnevsky <kurnevsky@gmail.com> | 2023-09-15 10:10:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-15 11:10:22 +0300 |
commit | 235f7c193b02dacfb56319e41a28684b3a2c6db0 (patch) | |
tree | 9bfd346266381046c0bfb2f8fe41a9a88e30194e | |
parent | a51b68765799e75e17c7622f376bfbeb66f1bd70 (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.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 = '' |