lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

mpd_clientlib: 2.13 -> 2.14

Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 2.14 with grep in /nix/store/8q00s6prlgljs1imp7r40rq3jyafzlhc-libmpdclient-2.14
- found 2.14 in filename of file in /nix/store/8q00s6prlgljs1imp7r40rq3jyafzlhc-libmpdclient-2.14
- directory tree listing: https://gist.github.com/acd3295fdde722768ff964a7284a00c4

+2 -2
+2 -2
pkgs/servers/mpd/clientlib.nix
··· 1 1 { stdenv, fetchFromGitHub, meson, ninja, fixDarwinDylibNames }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "2.13"; 4 + version = "2.14"; 5 5 name = "libmpdclient-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "MusicPlayerDaemon"; 9 9 repo = "libmpdclient"; 10 10 rev = "v${version}"; 11 - sha256 = "1g1n6rk8kn87mbjqxxj0vi7haj8xx21xmqlzbrx2fvyp5357zvsq"; 11 + sha256 = "15vn9m4qcsccff5rg7jkzy5503skz6bmqqk6qc2smgvjgwn533sm"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ meson ninja ]