nixpkgs/pkgs/tools/video/bento4/default.nix

40 lines
1,000 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
2018-10-18 11:34:43 +02:00
, cmake
}:
stdenv.mkDerivation rec {
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
};
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 = ''
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" {} \;
runHook postInstall
2018-10-18 11:34:43 +02:00
'';
meta = with lib; {
2018-10-18 11:34:43 +02:00
description = "Full-featured MP4 format and MPEG DASH library and tools";
homepage = "http://bento4.com";
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
};
}