ashuffle: 3.12.5 -> 3.13.4

This commit is contained in:
Gabriel Arazas 2022-11-07 13:20:12 +08:00
parent afddc087d9
commit 73264125a2

View File

@ -6,23 +6,26 @@
, meson , meson
, ninja , ninja
, libmpdclient , libmpdclient
, libyamlcpp
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "ashuffle"; pname = "ashuffle";
version = "3.12.5"; version = "3.13.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "joshkunz"; owner = "joshkunz";
repo = "ashuffle"; repo = "ashuffle";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-dPgv6EzRxRdHkGvys601Bkg9Srd8oEjoE9jbAin74Vk="; sha256 = "sha256-J6NN0Rsc9Zw9gagksDlwpwEErs+4XmrGF9YHKlAE1FA=";
fetchSubmodules = true; fetchSubmodules = true;
}; };
dontUseCmakeConfigure = true; dontUseCmakeConfigure = true;
nativeBuildInputs = [ cmake pkg-config meson ninja ]; nativeBuildInputs = [ cmake pkg-config meson ninja ];
buildInputs = [ libmpdclient ]; buildInputs = [ libmpdclient libyamlcpp ];
mesonFlags = [ "-Dunsupported_use_system_yamlcpp=true" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/joshkunz/ashuffle"; homepage = "https://github.com/joshkunz/ashuffle";