4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
42 lines
1.4 KiB
Nix
42 lines
1.4 KiB
Nix
{ lib, stdenv, mkDerivation, fetchFromGitHub, which, qtbase, qtwebkit, qtscript, xlibsWrapper
|
|
, libpulseaudio, fftwSinglePrec , lame, zlib, libGLU, libGL, alsaLib, freetype
|
|
, perl, pkgconfig , libsamplerate, libbluray, lzo, libX11, libXv, libXrandr, libXvMC, libXinerama, libXxf86vm
|
|
, libXmu , yasm, libuuid, taglib, libtool, autoconf, automake, file, exiv2, linuxHeaders
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "mythtv";
|
|
version = "31.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MythTV";
|
|
repo = "mythtv";
|
|
rev = "v${version}";
|
|
sha256 = "092w5kvc1gjz6jd2lk2jhcazasz2h3xh0i5iq80k8x3znyp4i6v5";
|
|
};
|
|
|
|
patches = [
|
|
# Disables OS detection used while checking if enforce_wshadow should be disabled.
|
|
./disable-os-detection.patch
|
|
];
|
|
|
|
setSourceRoot = ''sourceRoot=$(echo */mythtv)'';
|
|
|
|
buildInputs = [
|
|
freetype qtbase qtwebkit qtscript lame zlib xlibsWrapper libGLU libGL
|
|
perl libsamplerate libbluray lzo alsaLib libpulseaudio fftwSinglePrec libX11 libXv libXrandr libXvMC
|
|
libXmu libXinerama libXxf86vm libXmu libuuid taglib exiv2
|
|
];
|
|
nativeBuildInputs = [ pkgconfig which yasm libtool autoconf automake file ];
|
|
|
|
configureFlags =
|
|
[ "--dvb-path=${linuxHeaders}/include" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.mythtv.org/";
|
|
description = "Open Source DVR";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.titanous ];
|
|
};
|
|
}
|