chezmoi: 2.56.0 -> 2.57.0 (#372077)
[NixPkgs.git] / pkgs / by-name / me / media-player-info / package.nix
blob1249f4e411e38ee7fe457927aab2a8e70caba8ce
2   lib,
3   stdenv,
4   fetchFromGitLab,
5   autoreconfHook,
6   pkg-config,
7   python3,
8   udev,
9   systemd,
12 stdenv.mkDerivation rec {
13   pname = "media-player-info";
14   version = "26";
16   src = fetchFromGitLab {
17     domain = "gitlab.freedesktop.org";
18     owner = "media-player-info";
19     repo = "media-player-info";
20     rev = version;
21     hash = "sha256-VoMr5Lxy6u/BA/9t65/S8AW41YU0FLp6eftYUVdoMjY=";
22   };
24   buildInputs = [
25     udev
26     systemd
27   ];
28   nativeBuildInputs = [
29     autoreconfHook
30     pkg-config
31     python3
32   ];
34   postPatch = ''
35     patchShebangs ./tools
36   '';
38   configureFlags = [ "--with-udevdir=${placeholder "out"}/lib/udev" ];
40   meta = with lib; {
41     description = "Repository of data files describing media player capabilities";
42     homepage = "https://www.freedesktop.org/wiki/Software/media-player-info/";
43     license = licenses.bsd3;
44     maintainers = with maintainers; [ ttuegel ];
45     platforms = with platforms; linux;
46   };