mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
1b7457ee66
CMakeLists.txt in v1.6.0-641 set `CMAKE_OSX_ARCHITECTURES`, which broke
evaluation on Darwin. Fix it by unsetting `CMAKE_OSX_ARCHITECTURES`.
(cherry picked from commit b7b04c42f8
)
48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, cmake
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "bento4";
|
|
version = "1.6.0-641";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "axiomatic-systems";
|
|
repo = "Bento4";
|
|
rev = "v${version}";
|
|
hash = "sha256-Qy8D3cbCVHmLAaXtiF64rL2oRurXNCtd5Dsgt0W7WdY=";
|
|
};
|
|
|
|
patches = [
|
|
./libap4.patch # include all libraries as shared, not static
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
cmakeFlags = [
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
"-DCMAKE_OSX_ARCHITECTURES="
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/{lib,bin}
|
|
find -iname '*${stdenv.hostPlatform.extensions.sharedLibrary}' -exec mv --target-directory="$out/lib" {} \;
|
|
find -maxdepth 1 -executable -type f -exec mv --target-directory="$out/bin" {} \;
|
|
runHook postInstall
|
|
'';
|
|
|
|
# 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; {
|
|
description = "Full-featured MP4 format and MPEG DASH library and tools";
|
|
homepage = "http://bento4.com";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ makefu ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|