summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/video/gpac
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-10-01 08:59:12 +0000
committerOrivej Desh <orivej@gmx.fr>2017-10-01 08:59:12 +0000
commit2847acf517475bdac6731b96ec406006f5105494 (patch)
treef4d66d4ef542e1a269150c9a6d20c67922092adb /pkgs/applications/video/gpac
parent4994e3f2c27df62c1f7f8f2fd7834ec5d282c341 (diff)
gpac: fix up
Diffstat (limited to 'pkgs/applications/video/gpac')
-rw-r--r--pkgs/applications/video/gpac/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/applications/video/gpac/default.nix b/pkgs/applications/video/gpac/default.nix
index c3f949ae5b7d..7a8b66d2d28e 100644
--- a/pkgs/applications/video/gpac/default.nix
+++ b/pkgs/applications/video/gpac/default.nix
@@ -13,9 +13,13 @@ stdenv.mkDerivation rec {
# this is the bare minimum configuration, as I'm only interested in MP4Box
# For most other functionality, this should probably be extended
- nativeBuildInputs = [ pkgconfig zlib ];
+ nativeBuildInputs = [ pkgconfig ];
- meta = {
+ buildInputs = [ zlib ];
+
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
description = "Open Source multimedia framework for research and academic purposes";
longDescription = ''
GPAC is an Open Source multimedia framework for research and academic purposes.
@@ -30,12 +34,8 @@ stdenv.mkDerivation rec {
And some server tools included in MP4Box and MP42TS applications.
'';
homepage = https://gpac.wp.imt.fr;
- license = stdenv.lib.licenses.lgpl21;
-
- maintainers = [
- stdenv.lib.maintainers.bluescreen303
- stdenv.lib.maintainers.mgdelacroix
- ];
- platforms = stdenv.lib.platforms.linux;
+ license = licenses.lgpl21;
+ maintainers = with maintainers; [ bluescreen303 mgdelacroix ];
+ platforms = platforms.linux;
};
}