mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
21e3ff658a
Scilab note: the parameters already had pointed to nonexistent dirs before this set of refactoring. But that config wasn't even used by default.
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 ];
|
|
};
|
|
}
|