mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
61922738bb
Per the adjusted FFmpeg pinning advice, packages that work on the default version should use the unversioned variants to ease the migration to future versions and reduce the number of packages that end up referencing old versions. I have left HandBrake pinned as it builds a custom patched FFmpeg.
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, ffmpeg, libebur128
|
|
, libresample, taglib, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "loudgain";
|
|
version = "0.6.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Moonbase59";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-XLj+n0GlY/GAkJlW2JVMd0jxMzgdv/YeSTuF6QUIGwU=";
|
|
};
|
|
|
|
patches = [
|
|
# src/scan.c: Only call av_register_all() if using libavformat < 58.9.100
|
|
# https://github.com/Moonbase59/loudgain/pull/50
|
|
./support-ffmpeg-5.patch
|
|
|
|
# src/scan.c: Declare "AVCodec" to be "const AVCodec"
|
|
# https://github.com/Moonbase59/loudgain/pull/65
|
|
./fix-gcc-14.patch
|
|
|
|
# src/scan.c: Update for FFmpeg 7.0
|
|
# https://github.com/Moonbase59/loudgain/pull/66
|
|
./support-ffmpeg-7.patch
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ ffmpeg libebur128 libresample taglib zlib ];
|
|
|
|
postInstall = ''
|
|
sed -e "1aPATH=$out/bin:\$PATH" -i "$out/bin/rgbpm"
|
|
'';
|
|
|
|
meta = src.meta // {
|
|
license = lib.licenses.free;
|
|
maintainers = with lib.maintainers; [ ehmry ];
|
|
};
|
|
}
|