Merge pull request #304973 from Assistant/syncplay

syncplay: 1.7.0 -> 1.7.2

authored by Peder Bergebakken Sundt and committed by GitHub 2fb77723 1158248b

+3 -9
+3 -9
pkgs/applications/networking/syncplay/default.nix
··· 2 2 , stdenv 3 3 , fetchFromGitHub 4 4 , buildPythonApplication 5 - , fetchpatch 6 5 , pem 7 6 , pyside6 8 7 , twisted ··· 14 13 15 14 buildPythonApplication rec { 16 15 pname = "syncplay"; 17 - version = "1.7.0"; 16 + version = "1.7.2"; 18 17 19 18 format = "other"; 20 19 ··· 22 21 owner = "Syncplay"; 23 22 repo = "syncplay"; 24 23 rev = "v${version}"; 25 - sha256 = "sha256-Te81yOv3D6M6aMfC5XrM6/I6BlMdlY1yRk1RRJa9Mxg="; 24 + sha256 = "sha256-PERPE6141LXmb8fmW17Vu54Unpf9vEK+ahm6q1byRTU="; 26 25 }; 27 26 28 27 patches = [ 29 - (fetchpatch { 30 - name = "fix-typeerror.patch"; 31 - url = "https://github.com/Syncplay/syncplay/commit/b62b038cdf58c54205987dfc52ebf228505ad03b.patch"; 32 - hash = "sha256-pSP33Qn1I+nJBW8T1E1tSJKRh5OnZMRsbU+jr5z4u7c="; 33 - }) 34 28 ./trusted_certificates.patch 35 29 ]; 36 30 ··· 52 46 description = "Free software that synchronises media players"; 53 47 license = licenses.asl20; 54 48 platforms = platforms.linux ++ platforms.darwin; 55 - maintainers = with maintainers; [ Enzime ]; 49 + maintainers = with maintainers; [ assistant Enzime ]; 56 50 }; 57 51 }