Merge pull request #256211 from r-ryantm/auto-update/mympd

mympd: 11.0.5 -> 12.0.1
This commit is contained in:
Doron Behar 2023-09-20 18:21:48 +03:00 committed by GitHub
commit 82c27782ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,15 +14,15 @@
, jq , jq
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "mympd"; pname = "mympd";
version = "11.0.5"; version = "12.0.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jcorporation"; owner = "jcorporation";
repo = "myMPD"; repo = "myMPD";
rev = "v${version}"; rev = "v${finalAttrs.version}";
sha256 = "sha256-m+EO3+vVqX7/SNvbQrJVjhG53Q20f6cEJ2HNUdWeeiw="; sha256 = "sha256-tkkaBIWoQS28FsCSN5CKw2ZQ3cbYa34PVZCUGaaqaQo=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -64,4 +64,4 @@ stdenv.mkDerivation rec {
platforms = lib.platforms.linux; platforms = lib.platforms.linux;
license = lib.licenses.gpl2Plus; license = lib.licenses.gpl2Plus;
}; };
} })