Merge pull request #199972 from foo-dogsquared/update-ashuffle

ashuffle: 3.12.5 -> 3.13.4
This commit is contained in:
Anderson Torres 2022-11-08 11:06:22 -03:00 committed by GitHub
commit 4d44cd61d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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