nixpkgs/pkgs/by-name/be/bento4/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

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.hostPlatform.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.hostPlatform.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;
};
}