about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/misc/media-player-info/default.nix
blob: 652298d1656dd6c2f66f8245c478c143f632cc28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, stdenv, fetchurl, pkg-config, python3, udev, systemd }:

stdenv.mkDerivation rec {
  pname = "media-player-info";
  version = "24";

  src = fetchurl {
    url = "https://www.freedesktop.org/software/media-player-info/${pname}-${version}.tar.gz";
    sha256 = "0d0i7av8v369hzvlynwlrbickv1brlzsmiky80lrjgjh1gdldkz6";
  };

  buildInputs = [ udev systemd ];
  nativeBuildInputs = [ pkg-config python3 ];

  postPatch = ''
    patchShebangs ./tools
  '';

  configureFlags = [ "--with-udevdir=${placeholder "out"}/lib/udev" ];

  meta = with lib; {
    description = "A repository of data files describing media player capabilities";
    homepage = "https://www.freedesktop.org/wiki/Software/media-player-info/";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ttuegel ];
    platforms = with platforms; linux;
  };
}