mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
c8ac6f7aae
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/media-player-info/versions.
34 lines
896 B
Nix
34 lines
896 B
Nix
{ stdenv, fetchurl, pkgconfig, python3, udev, systemd }:
|
|
|
|
let
|
|
name = "media-player-info-24";
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
inherit name;
|
|
|
|
src = fetchurl {
|
|
url = "https://www.freedesktop.org/software/media-player-info/${name}.tar.gz";
|
|
sha256 = "0d0i7av8v369hzvlynwlrbickv1brlzsmiky80lrjgjh1gdldkz6";
|
|
};
|
|
|
|
buildInputs = [ udev systemd ];
|
|
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 = https://www.freedesktop.org/wiki/Software/media-player-info/;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ttuegel ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|