Merge pull request #29745 from mgdelacroix/gpac-update
gpac: 0.5.0 -> 0.7.1
This commit is contained in:
commit
432f9925a6
@ -373,6 +373,7 @@
|
|||||||
meditans = "Carlo Nucera <meditans@gmail.com>";
|
meditans = "Carlo Nucera <meditans@gmail.com>";
|
||||||
meisternu = "Matt Miemiec <meister@krutt.org>";
|
meisternu = "Matt Miemiec <meister@krutt.org>";
|
||||||
metabar = "Celine Mercier <softs@metabarcoding.org>";
|
metabar = "Celine Mercier <softs@metabarcoding.org>";
|
||||||
|
mgdelacroix = "Miguel de la Cruz <mgdelacroix@gmail.com>";
|
||||||
mguentner = "Maximilian Güntner <code@klandest.in>";
|
mguentner = "Maximilian Güntner <code@klandest.in>";
|
||||||
mic92 = "Jörg Thalheim <joerg@thalheim.io>";
|
mic92 = "Jörg Thalheim <joerg@thalheim.io>";
|
||||||
michaelpj = "Michael Peyton Jones <michaelpj@gmail.com>";
|
michaelpj = "Michael Peyton Jones <michaelpj@gmail.com>";
|
||||||
|
@ -1,19 +1,25 @@
|
|||||||
{ stdenv, fetchsvn, pkgconfig, zlib }:
|
{ stdenv, fetchFromGitHub, pkgconfig, zlib }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gpac-0.5.0-svn";
|
version = "0.7.1";
|
||||||
|
name = "gpac-${version}";
|
||||||
|
|
||||||
src = fetchsvn {
|
src = fetchFromGitHub {
|
||||||
url = "http://svn.code.sf.net/p/gpac/code/trunk/gpac";
|
owner = "gpac";
|
||||||
rev = "4749";
|
repo = "gpac";
|
||||||
sha256 = "0y38pmp64a2l70y1yby90qzxfzx8y7r0cdmgjxzw86jh6si5ndhp";
|
rev = "v${version}";
|
||||||
|
sha256 = "197c5968p5bzvk0ga347fwgkqh4j1v3z65wlx65c5m9gwfxz2k2q";
|
||||||
};
|
};
|
||||||
|
|
||||||
# this is the bare minimum configuration, as I'm only interested in MP4Box
|
# this is the bare minimum configuration, as I'm only interested in MP4Box
|
||||||
# For most other functionality, this should probably be extended
|
# 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";
|
description = "Open Source multimedia framework for research and academic purposes";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
GPAC is an Open Source multimedia framework for research and academic purposes.
|
GPAC is an Open Source multimedia framework for research and academic purposes.
|
||||||
@ -27,10 +33,9 @@ stdenv.mkDerivation rec {
|
|||||||
A multimedia packager, called MP4Box,
|
A multimedia packager, called MP4Box,
|
||||||
And some server tools included in MP4Box and MP42TS applications.
|
And some server tools included in MP4Box and MP42TS applications.
|
||||||
'';
|
'';
|
||||||
homepage = http://gpac.wp.mines-telecom.fr;
|
homepage = https://gpac.wp.imt.fr;
|
||||||
license = stdenv.lib.licenses.lgpl21;
|
license = licenses.lgpl21;
|
||||||
|
maintainers = with maintainers; [ bluescreen303 mgdelacroix ];
|
||||||
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
|
platforms = platforms.linux;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user