3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/video/bento4/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.2 KiB
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchFromGitHub
2018-10-18 10:34:43 +01:00
, cmake
}:
stdenv.mkDerivation rec {
pname = "bento4";
2023-05-25 22:37:25 +01:00
version = "1.6.0-640";
2018-10-18 10:34:43 +01:00
src = fetchFromGitHub {
owner = "axiomatic-systems";
repo = "Bento4";
rev = "v${version}";
2023-05-25 22:37:25 +01:00
hash = "sha256-VhlFfNYw3xpAIyWqDyhgXIv3JtpFJH0BL97dFX8diRY=";
2018-10-18 10:34:43 +01:00
};
patches = [
./libap4.patch # include all libraries as shared, not static
];
2019-01-08 07:54:40 +00:00
2018-10-18 10:34:43 +01:00
nativeBuildInputs = [ cmake ];
2019-01-08 07:54:40 +00:00
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
2018-10-18 10:34:43 +01:00
installPhase = ''
runHook preInstall
2018-10-18 10:34:43 +01:00
mkdir -p $out/{lib,bin}
find -iname '*${stdenv.hostPlatform.extensions.sharedLibrary}' -exec mv --target-directory="$out/lib" {} \;
2018-10-18 10:34:43 +01:00
find -maxdepth 1 -executable -type f -exec mv --target-directory="$out/bin" {} \;
runHook postInstall
2018-10-18 10:34:43 +01:00
'';
# Patch binaries to use our dylib
postInstall = lib.optionalString stdenv.isDarwin ''
find $out/bin -maxdepth 1 -executable -type f -exec install_name_tool -change @rpath/libap4.dylib $out/lib/libap4.dylib {} \;
'';
meta = with lib; {
2018-10-18 10:34:43 +01:00
description = "Full-featured MP4 format and MPEG DASH library and tools";
homepage = "http://bento4.com";
license = licenses.gpl2Plus;
2018-10-18 10:34:43 +01:00
maintainers = with maintainers; [ makefu ];
2021-03-22 07:22:10 +00:00
platforms = platforms.unix;
2018-10-18 10:34:43 +01:00
};
}