2017-12-09 11:44:22 +00:00
|
|
|
{ stdenv, lib, fetchurl }:
|
2010-09-14 15:29:31 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-23 00:04:26 +00:00
|
|
|
name = "mp4v2-2.0.0";
|
2010-09-14 15:29:31 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-02-23 00:04:26 +00:00
|
|
|
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/mp4v2/${name}.tar.bz2";
|
|
|
|
sha256 = "0f438bimimsvxjbdp4vsr8hjw2nwggmhaxgcw07g2z361fkbj683";
|
2010-09-14 15:29:31 +01:00
|
|
|
};
|
2010-09-15 13:57:49 +01:00
|
|
|
|
2014-05-04 00:44:16 +01:00
|
|
|
patches = [
|
2018-02-18 13:33:37 +00:00
|
|
|
(fetchurl {
|
|
|
|
name = "gcc-7.patch";
|
|
|
|
url = "https://src.fedoraproject.org/cgit/rpms/libmp4v2.git/plain/"
|
|
|
|
+ "0004-Fix-GCC7-build.patch?id=d7aeedabb";
|
|
|
|
sha256 = "0sbn0il7lmk77yrjyb4f0a3z3h8gsmdkscvz5n9hmrrrhrwf672w";
|
|
|
|
})
|
2014-05-04 00:44:16 +01:00
|
|
|
];
|
2018-02-18 13:33:37 +00:00
|
|
|
|
2011-05-12 21:43:33 +01:00
|
|
|
# `faac' expects `mp4.h'.
|
|
|
|
postInstall = "ln -s mp4v2/mp4v2.h $out/include/mp4.h";
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-11 01:00:03 +00:00
|
|
|
|
2017-12-09 11:44:22 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2010-09-15 13:57:49 +01:00
|
|
|
meta = {
|
2018-12-28 14:44:24 +00:00
|
|
|
description = "Abandoned library. Provides functions to read, create, and modify mp4 files";
|
|
|
|
longDescription = ''
|
|
|
|
MP4v2 library provides an API to work with mp4 files
|
|
|
|
as defined by ISO-IEC:14496-1:2001 MPEG-4 Systems.
|
|
|
|
This container format is derived from Apple's QuickTime format.
|
|
|
|
'';
|
2017-10-27 00:44:19 +01:00
|
|
|
homepage = https://code.google.com/archive/p/mp4v2/;
|
2018-12-28 14:45:00 +00:00
|
|
|
maintainers = [ lib.maintainers.Anton-Latukha ];
|
2017-12-09 11:44:22 +00:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
license = lib.licenses.mpl11;
|
2010-09-15 13:57:49 +01:00
|
|
|
};
|
2010-09-14 15:29:31 +01:00
|
|
|
}
|