summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-20 11:26:03 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-03-20 11:26:03 -0700
commit7c3b57c7cd3352cad10412876b7d1f858ffdf025 (patch)
treee7f28ba1d553bd82a3a9f726c8c20c12dbdba0e3 /pkgs
parent47bbd819c78b6966165b5a35050191e5700e8460 (diff)
downloadnixlib-7c3b57c7cd3352cad10412876b7d1f858ffdf025.tar
nixlib-7c3b57c7cd3352cad10412876b7d1f858ffdf025.tar.gz
nixlib-7c3b57c7cd3352cad10412876b7d1f858ffdf025.tar.bz2
nixlib-7c3b57c7cd3352cad10412876b7d1f858ffdf025.tar.lz
nixlib-7c3b57c7cd3352cad10412876b7d1f858ffdf025.tar.xz
nixlib-7c3b57c7cd3352cad10412876b7d1f858ffdf025.tar.zst
nixlib-7c3b57c7cd3352cad10412876b7d1f858ffdf025.zip
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
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/mpd/clientlib.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/mpd/clientlib.nix b/pkgs/servers/mpd/clientlib.nix
index dab63a5bad83..478d43722679 100644
--- a/pkgs/servers/mpd/clientlib.nix
+++ b/pkgs/servers/mpd/clientlib.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, meson, ninja, fixDarwinDylibNames }:
 
 stdenv.mkDerivation rec {
-  version = "2.13";
+  version = "2.14";
   name = "libmpdclient-${version}";
 
   src = fetchFromGitHub {
     owner  = "MusicPlayerDaemon";
     repo   = "libmpdclient";
     rev    = "v${version}";
-    sha256 = "1g1n6rk8kn87mbjqxxj0vi7haj8xx21xmqlzbrx2fvyp5357zvsq";
+    sha256 = "15vn9m4qcsccff5rg7jkzy5503skz6bmqqk6qc2smgvjgwn533sm";
   };
 
   nativeBuildInputs = [ meson ninja ]