2022-11-30 09:23:27 +00:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, fetchpatch, which, qtbase, qtwebkit, qtscript
|
2021-06-10 02:57:09 +00:00
|
|
|
, libpulseaudio, fftwSinglePrec , lame, zlib, libGLU, libGL, alsa-lib, freetype
|
2021-01-17 02:09:27 +00:00
|
|
|
, perl, pkg-config , libsamplerate, libbluray, lzo, libX11, libXv, libXrandr, libXvMC, libXinerama, libXxf86vm
|
2023-01-24 01:22:59 +00:00
|
|
|
, libXmu , yasm, libuuid, taglib, libtool, autoconf, automake, file, exiv2, linuxHeaders
|
|
|
|
, soundtouch, libzip, libhdhomerun
|
2022-11-26 22:29:12 +00:00
|
|
|
, withWebKit ? false
|
2006-10-17 08:00:50 +00:00
|
|
|
}:
|
2005-01-20 21:11:49 +00:00
|
|
|
|
2019-10-11 22:59:25 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mythtv";
|
2022-11-26 22:29:12 +00:00
|
|
|
version = "32.0";
|
2005-01-22 00:19:27 +00:00
|
|
|
|
2018-03-18 22:38:07 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MythTV";
|
|
|
|
repo = "mythtv";
|
|
|
|
rev = "v${version}";
|
2022-11-26 22:29:12 +00:00
|
|
|
sha256 = "0i4fs3rbk1jggh62wflpa2l03na9i1ihpz2vsdic9vfahqqjxff1";
|
2005-01-20 21:11:49 +00:00
|
|
|
};
|
|
|
|
|
2019-06-27 04:46:59 +00:00
|
|
|
patches = [
|
2022-11-26 22:29:12 +00:00
|
|
|
# Disable sourcing /etc/os-release
|
|
|
|
./dont-source-os-release.patch
|
|
|
|
|
|
|
|
# Fix QMake variable substitution syntax - MythTV/mythtv#550
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fix-qmake-var-syntax.patch";
|
|
|
|
url = "https://github.com/MythTV/mythtv/commit/a8da7f7e7ec069164adbef65a8104adc9bb52e36.patch";
|
|
|
|
stripLen = 1;
|
|
|
|
hash = "sha256-JfRME00YNNjl6SKs1HBa0wBa/lR/Rt3zbQtWhsC36JM=";
|
|
|
|
})
|
2019-06-27 04:46:59 +00:00
|
|
|
];
|
|
|
|
|
2021-01-24 09:19:10 +00:00
|
|
|
setSourceRoot = "sourceRoot=$(echo */mythtv)";
|
2014-11-02 20:06:40 +00:00
|
|
|
|
2006-09-14 13:24:06 +00:00
|
|
|
buildInputs = [
|
2022-11-30 09:23:27 +00:00
|
|
|
freetype qtbase qtscript lame zlib libGLU libGL
|
2021-06-10 02:57:09 +00:00
|
|
|
perl libsamplerate libbluray lzo alsa-lib libpulseaudio fftwSinglePrec libX11 libXv libXrandr libXvMC
|
2022-11-26 22:29:12 +00:00
|
|
|
libXmu libXinerama libXxf86vm libXmu libuuid taglib exiv2 soundtouch libzip
|
2023-01-24 01:22:59 +00:00
|
|
|
libhdhomerun
|
2022-11-26 22:29:12 +00:00
|
|
|
] ++ lib.optional withWebKit qtwebkit;
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config which yasm libtool autoconf automake file ];
|
2012-03-16 22:26:26 +00:00
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
configureFlags =
|
2020-07-29 22:14:13 +00:00
|
|
|
[ "--dvb-path=${linuxHeaders}/include" ];
|
2018-03-18 22:38:07 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.mythtv.org/";
|
2014-11-02 20:06:40 +00:00
|
|
|
description = "Open Source DVR";
|
2020-07-29 22:14:13 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2017-12-05 22:20:11 +00:00
|
|
|
platforms = platforms.linux;
|
2014-11-02 20:06:40 +00:00
|
|
|
maintainers = [ maintainers.titanous ];
|
|
|
|
};
|
2005-01-20 21:11:49 +00:00
|
|
|
}
|