Merge pull request #146599 from trofi/fix-vimpc-for-ncurses-6.3

authored by

Sandro and committed by
GitHub
1d26590e 2a39b8a3

+11
+11
pkgs/applications/audio/vimpc/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , autoreconfHook 5 6 , libmpdclient 6 7 , ncurses ··· 20 21 rev = "v${version}"; 21 22 sha256 = "0lswzkap2nm7v5h7ppb6a64cb35rajysd09nb204rxgrkij4m6nx"; 22 23 }; 24 + 25 + patches = [ 26 + # Pull fix pending upstream inclusion for ncurses-6.3: 27 + # https://github.com/boysetsfrog/vimpc/pull/100 28 + (fetchpatch { 29 + name = "ncurses-6.3.patch"; 30 + url = "https://github.com/boysetsfrog/vimpc/commit/055ecdce0720fdfc9ec2528c520b6c33da36271b.patch"; 31 + sha256 = "01p858jjxm0bf8hnk1z8h45j8c1y9i995mafa6ff3vg9vlak61pv"; 32 + }) 33 + ]; 23 34 24 35 nativeBuildInputs = [ autoreconfHook pkg-config ]; 25 36 buildInputs = [ libmpdclient ncurses pcre taglib curl ];