From: Evgeny Kurnevsky Date: Fri, 15 Sep 2023 08:10:22 +0000 (+0200) Subject: flake : use pkg-config instead of pkgconfig (#3188) X-Git-Tag: gguf-v0.4.0~68 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=235f7c193b02dacfb56319e41a28684b3a2c6db0;p=pkg%2Fggml%2Fsources%2Fllama.cpp 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 --- 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 = ''