nixpkgs/pkgs/development/libraries/mp4v2/default.nix

38 lines
1,008 B
Nix
Raw Normal View History

2017-12-09 11:44:22 +00:00
{ stdenv, lib, fetchurl }:
stdenv.mkDerivation rec {
2017-02-23 00:04:26 +00:00
name = "mp4v2-2.0.0";
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";
};
patches = [
# From Handbrake
# mp4v2 doesn't seem to be actively maintained any more :-/
2017-02-23 00:04:26 +00:00
./A02-meaningful-4gb-warning.patch
(fetchurl {
name = "gcc-7.patch";
url = "https://src.fedoraproject.org/cgit/rpms/libmp4v2.git/plain/"
+ "0004-Fix-GCC7-build.patch?id=d7aeedabb";
sha256 = "0sbn0il7lmk77yrjyb4f0a3z3h8gsmdkscvz5n9hmrrrhrwf672w";
})
];
# `faac' expects `mp4.h'.
postInstall = "ln -s mp4v2/mp4v2.h $out/include/mp4.h";
hardeningDisable = [ "format" ];
2016-02-11 01:00:03 +00:00
2017-12-09 11:44:22 +00:00
enableParallelBuilding = true;
meta = {
homepage = https://code.google.com/archive/p/mp4v2/;
maintainers = [ ];
2017-12-09 11:44:22 +00:00
platforms = lib.platforms.unix;
license = lib.licenses.mpl11;
};
}