gpac: fix up

+9 -9
+9 -9
pkgs/applications/video/gpac/default.nix
··· 13 13 14 14 # this is the bare minimum configuration, as I'm only interested in MP4Box 15 15 # For most other functionality, this should probably be extended 16 - nativeBuildInputs = [ pkgconfig zlib ]; 16 + nativeBuildInputs = [ pkgconfig ]; 17 17 18 - meta = { 18 + buildInputs = [ zlib ]; 19 + 20 + enableParallelBuilding = true; 21 + 22 + meta = with stdenv.lib; { 19 23 description = "Open Source multimedia framework for research and academic purposes"; 20 24 longDescription = '' 21 25 GPAC is an Open Source multimedia framework for research and academic purposes. ··· 30 34 And some server tools included in MP4Box and MP42TS applications. 31 35 ''; 32 36 homepage = https://gpac.wp.imt.fr; 33 - license = stdenv.lib.licenses.lgpl21; 34 - 35 - maintainers = [ 36 - stdenv.lib.maintainers.bluescreen303 37 - stdenv.lib.maintainers.mgdelacroix 38 - ]; 39 - platforms = stdenv.lib.platforms.linux; 37 + license = licenses.lgpl21; 38 + maintainers = with maintainers; [ bluescreen303 mgdelacroix ]; 39 + platforms = platforms.linux; 40 40 }; 41 41 }