summary refs log tree commit diff
path: root/pkgs/data/misc/media-player-info/default.nix
blob: b2bfb7bd13dcf18ec56a317e613a460584d437b7 (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
29
30
31
32
{ stdenv, fetchurl, pkgconfig, python3, udev }:

let
  name = "media-player-info-22";
in

  stdenv.mkDerivation {
    inherit name;

    src = fetchurl {
      url = "http://www.freedesktop.org/software/media-player-info/${name}.tar.gz";
      sha256 = "0di3gfx5z8c34yspzyllydr5snzg71r985kbqhrhb1il51qxgrvy";
    };

    buildInputs = [ udev ];
    nativeBuildInputs = [ pkgconfig python3 ];

    postPatch = ''
      patchShebangs ./tools
    '';

    preConfigure = ''
      configureFlags="$configureFlags --with-udevdir=$out/lib/udev"
    '';

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