2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub
|
2018-10-18 11:34:43 +02:00
|
|
|
, cmake
|
|
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "bento4";
|
2021-08-20 18:43:48 +02:00
|
|
|
version = "1.6.0-639";
|
2018-10-18 11:34:43 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "axiomatic-systems";
|
|
|
|
repo = "Bento4";
|
|
|
|
rev = "v${version}";
|
2021-08-20 18:43:48 +02:00
|
|
|
sha256 = "sha256-Rfmyjsgn/dcIplRtPFb5AfBxWOKmP6w8IHykgVxVNsQ=";
|
2018-10-18 11:34:43 +02:00
|
|
|
};
|
|
|
|
|
2021-06-30 02:22:58 +02:00
|
|
|
patches = [
|
|
|
|
./libap4.patch # include all libraries as shared, not static
|
|
|
|
];
|
2019-01-08 08:54:40 +01:00
|
|
|
|
2018-10-18 11:34:43 +02:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2019-01-08 08:54:40 +01:00
|
|
|
|
|
|
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
|
|
|
|
|
2018-10-18 11:34:43 +02:00
|
|
|
installPhase = ''
|
2021-06-30 02:22:58 +02:00
|
|
|
runHook preInstall
|
2018-10-18 11:34:43 +02:00
|
|
|
mkdir -p $out/{lib,bin}
|
|
|
|
find -iname '*.so' -exec mv --target-directory="$out/lib" {} \;
|
|
|
|
find -maxdepth 1 -executable -type f -exec mv --target-directory="$out/bin" {} \;
|
2021-06-30 02:22:58 +02:00
|
|
|
runHook postInstall
|
2018-10-18 11:34:43 +02:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-10-18 11:34:43 +02:00
|
|
|
description = "Full-featured MP4 format and MPEG DASH library and tools";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://bento4.com";
|
2018-12-21 15:07:54 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2018-10-18 11:34:43 +02:00
|
|
|
maintainers = with maintainers; [ makefu ];
|
|
|
|
broken = stdenv.isAarch64;
|
2021-03-22 08:22:10 +01:00
|
|
|
platforms = platforms.unix;
|
2018-10-18 11:34:43 +02:00
|
|
|
};
|
|
|
|
}
|