f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
33 lines
1.0 KiB
Nix
33 lines
1.0 KiB
Nix
{ stdenv, fetchurl, which, qt4, xlibsWrapper, libpulseaudio, fftwSinglePrec
|
|
, lame, zlib, mesa, alsaLib, freetype, perl, pkgconfig
|
|
, libX11, libXv, libXrandr, libXvMC, libXinerama, libXxf86vm, libXmu
|
|
, yasm, libuuid, taglib, libtool, autoconf, automake, file
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mythtv-${version}";
|
|
version = "0.27.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/MythTV/mythtv/archive/v${version}.tar.gz";
|
|
sha256 = "0nrn4fbkkzh43n7jgbv21i92sb4z4yacwj9yj6m3hjbffzy4ywqz";
|
|
};
|
|
|
|
sourceRoot = "${name}/mythtv";
|
|
|
|
buildInputs = [
|
|
freetype qt4 lame zlib xlibsWrapper mesa perl alsaLib libpulseaudio fftwSinglePrec
|
|
libX11 libXv libXrandr libXvMC libXmu libXinerama libXxf86vm libXmu
|
|
libuuid taglib
|
|
];
|
|
nativeBuildInputs = [ pkgconfig which yasm libtool autoconf automake file ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.mythtv.org/;
|
|
description = "Open Source DVR";
|
|
license = licenses.gpl2;
|
|
meta.platforms = platforms.linux;
|
|
maintainers = [ maintainers.titanous ];
|
|
};
|
|
}
|