lol

media-player-info: 22 -> 23

Semi-automatic update. These checks were performed:

- built on NixOS
- found 23 with grep in /nix/store/fwi1kp97s2smbwf5ir9jrykf6427i4n6-media-player-info-23
- found 23 in filename of file in /nix/store/fwi1kp97s2smbwf5ir9jrykf6427i4n6-media-player-info-23

authored by

Ryan Mulligan and committed by
Jan Tojnar
f3ed511b 1beee1cf

+4 -4
+4 -4
pkgs/data/misc/media-player-info/default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, python3, udev, systemd }: 2 2 3 3 let 4 - name = "media-player-info-22"; 4 + name = "media-player-info-23"; 5 5 in 6 6 7 7 stdenv.mkDerivation { 8 8 inherit name; 9 9 10 10 src = fetchurl { 11 - url = "http://www.freedesktop.org/software/media-player-info/${name}.tar.gz"; 12 - sha256 = "0di3gfx5z8c34yspzyllydr5snzg71r985kbqhrhb1il51qxgrvy"; 11 + url = "https://www.freedesktop.org/software/media-player-info/${name}.tar.gz"; 12 + sha256 = "1jy8xh4xjgjc4wj4qrw6sx2j3606zsj4bgiczhzf3xlpnkh6vax9"; 13 13 }; 14 14 15 15 buildInputs = [ udev systemd ]; ··· 25 25 26 26 meta = with stdenv.lib; { 27 27 description = "A repository of data files describing media player capabilities"; 28 - homepage = http://www.freedesktop.org/wiki/Software/media-player-info/; 28 + homepage = https://www.freedesktop.org/wiki/Software/media-player-info/; 29 29 license = licenses.bsd3; 30 30 maintainers = with maintainers; [ ttuegel ]; 31 31 platforms = with platforms; linux;