summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-27 06:02:57 -0800
committerJan Tojnar <jtojnar@gmail.com>2018-02-27 23:54:09 +0100
commitf3ed511b44b2269e2af2a2595acb7766b5a870e3 (patch)
treeb7fb6d96efdd60b8db570aa69d0e912a5617c936
parent1beee1cfc8706e545e2e360cd829b6d74d464686 (diff)
downloadnixlib-f3ed511b44b2269e2af2a2595acb7766b5a870e3.tar
nixlib-f3ed511b44b2269e2af2a2595acb7766b5a870e3.tar.gz
nixlib-f3ed511b44b2269e2af2a2595acb7766b5a870e3.tar.bz2
nixlib-f3ed511b44b2269e2af2a2595acb7766b5a870e3.tar.lz
nixlib-f3ed511b44b2269e2af2a2595acb7766b5a870e3.tar.xz
nixlib-f3ed511b44b2269e2af2a2595acb7766b5a870e3.tar.zst
nixlib-f3ed511b44b2269e2af2a2595acb7766b5a870e3.zip
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
-rw-r--r--pkgs/data/misc/media-player-info/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/data/misc/media-player-info/default.nix b/pkgs/data/misc/media-player-info/default.nix
index 4d824e6e8d77..dbf92ad066f5 100644
--- a/pkgs/data/misc/media-player-info/default.nix
+++ b/pkgs/data/misc/media-player-info/default.nix
@@ -1,15 +1,15 @@
 { stdenv, fetchurl, pkgconfig, python3, udev, systemd }:
 
 let
-  name = "media-player-info-22";
+  name = "media-player-info-23";
 in
 
   stdenv.mkDerivation {
     inherit name;
 
     src = fetchurl {
-      url = "http://www.freedesktop.org/software/media-player-info/${name}.tar.gz";
-      sha256 = "0di3gfx5z8c34yspzyllydr5snzg71r985kbqhrhb1il51qxgrvy";
+      url = "https://www.freedesktop.org/software/media-player-info/${name}.tar.gz";
+      sha256 = "1jy8xh4xjgjc4wj4qrw6sx2j3606zsj4bgiczhzf3xlpnkh6vax9";
     };
 
     buildInputs = [ udev systemd ];
@@ -25,7 +25,7 @@ in
 
     meta = with stdenv.lib; {
       description = "A repository of data files describing media player capabilities";
-      homepage = http://www.freedesktop.org/wiki/Software/media-player-info/;
+      homepage = https://www.freedesktop.org/wiki/Software/media-player-info/;
       license = licenses.bsd3;
       maintainers = with maintainers; [ ttuegel ];
       platforms = with platforms; linux;