libkeyfinder: fix paths in pkg-config file

authored by Alexander Shpilkin and committed by Artturin ad67699d 722cacf9

+10 -1
+10 -1
pkgs/development/libraries/audio/libkeyfinder/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, fftw, catch2 }: 1 + { lib, stdenv, fetchpatch, fetchFromGitHub, cmake, fftw, catch2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libkeyfinder"; ··· 10 10 rev = "v${version}"; 11 11 sha256 = "sha256-7w/Wc9ncLinbnM2q3yv5DBtFoJFAM2e9xAUTsqvE9mg="; 12 12 }; 13 + 14 + # in main post 2.2.6, see https://github.com/mixxxdj/libkeyfinder/issues/21 15 + patches = [ 16 + (fetchpatch { 17 + name = "fix-pkg-config"; 18 + url = "https://github.com/mixxxdj/libkeyfinder/commit/4e1a5022d4c91e3ecfe9be5c3ac7cc488093bd2e.patch"; 19 + sha256 = "08llmgp6r11bq5s820j3fs9bgriaibkhq8r3v2av064w66mwp48x"; 20 + }) 21 + ]; 13 22 14 23 nativeBuildInputs = [ cmake ]; 15 24