mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
media-player-info: rename name to pname&version
This commit is contained in:
parent
77f081b0bd
commit
b46221d764
|
@ -1,31 +1,28 @@
|
|||
{ lib, stdenv, fetchurl, pkg-config, python3, udev, systemd }:
|
||||
|
||||
let
|
||||
name = "media-player-info-24";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "media-player-info";
|
||||
version = "24";
|
||||
|
||||
stdenv.mkDerivation {
|
||||
inherit name;
|
||||
src = fetchurl {
|
||||
url = "https://www.freedesktop.org/software/media-player-info/${pname}-${version}.tar.gz";
|
||||
sha256 = "0d0i7av8v369hzvlynwlrbickv1brlzsmiky80lrjgjh1gdldkz6";
|
||||
};
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.freedesktop.org/software/media-player-info/${name}.tar.gz";
|
||||
sha256 = "0d0i7av8v369hzvlynwlrbickv1brlzsmiky80lrjgjh1gdldkz6";
|
||||
};
|
||||
buildInputs = [ udev systemd ];
|
||||
nativeBuildInputs = [ pkg-config python3 ];
|
||||
|
||||
buildInputs = [ udev systemd ];
|
||||
nativeBuildInputs = [ pkg-config python3 ];
|
||||
postPatch = ''
|
||||
patchShebangs ./tools
|
||||
'';
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs ./tools
|
||||
'';
|
||||
configureFlags = [ "--with-udevdir=${placeholder "out"}/lib/udev" ];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue