about summary refs log tree commit diff
path: root/pkgs/servers/tvheadend
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-03 16:43:56 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-03 18:37:40 +0700
commit3ae5e6ce03f9dbf3f0a0a3e3161c83e28c1b45af (patch)
treee1ef883cca4049653aabfc8409cd6e7d51f1de92 /pkgs/servers/tvheadend
parentfb2311d4307f9873ccd38c7f080fbf1df8f17daa (diff)
treewide: remove enableParallelBuilding = true if using cmake
Diffstat (limited to 'pkgs/servers/tvheadend')
-rw-r--r--pkgs/servers/tvheadend/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/servers/tvheadend/default.nix b/pkgs/servers/tvheadend/default.nix
index f4c3270bf3df8..9c857f95a456c 100644
--- a/pkgs/servers/tvheadend/default.nix
+++ b/pkgs/servers/tvheadend/default.nix
@@ -35,8 +35,6 @@ in stdenv.mkDerivation {
 
   nativeBuildInputs = [ cmake makeWrapper pkgconfig ];
 
-  enableParallelBuilding = true;
-
   NIX_CFLAGS_COMPILE = [ "-Wno-error=format-truncation" "-Wno-error=stringop-truncation" ];
 
   # disable dvbscan, as having it enabled causes a network download which
@@ -73,9 +71,9 @@ in stdenv.mkDerivation {
   meta = with stdenv.lib; {
     description = "TV streaming server";
     longDescription = ''
-	Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android
+        Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android
         supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, IPTV, SAT>IP and HDHomeRun as input sources.
-	Tvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT>IP streaming.'';
+        Tvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT>IP streaming.'';
     homepage = "https://tvheadend.org";
     license = licenses.gpl3;
     platforms = platforms.unix;