core/pkgs/by-name/rt/rtmpdump/default.nix

68 lines
1.6 KiB
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
stdenv,
fetchgit,
fetchpatch,
zlib,
gnutlsSupport ? false,
gnutls,
nettle,
opensslSupport ? true,
openssl,
2024-05-02 00:46:19 +00:00
}:
assert (gnutlsSupport || opensslSupport);
stdenv.mkDerivation {
pname = "rtmpdump";
version = "unstable-2021-02-19";
src = fetchgit {
url = "git://git.ffmpeg.org/rtmpdump";
# Currently the latest commit is used (a release has not been made since 2011, i.e. '2.4')
rev = "f1b83c10d8beb43fcc70a6e88cf4325499f25857";
sha256 = "0vchr0f0d5fi0zaa16jywva5db3x9dyws7clqaq32gwh5drbkvs0";
};
patches = [
# Fix build with OpenSSL 1.1
(fetchpatch {
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-video/rtmpdump/files/rtmpdump-openssl-1.1.patch?id=1e7bef484f96e7647f5f0911d3c8caa48131c33b";
sha256 = "1wds98pk8qr7shkfl8k49iirxiwd972h18w84bamiqln29wv6ql1";
})
];
2024-06-30 08:16:52 +00:00
makeFlags =
[
"prefix=$(out)"
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
]
2024-05-02 00:46:19 +00:00
++ lib.optional gnutlsSupport "CRYPTO=GNUTLS"
++ lib.optional opensslSupport "CRYPTO=OPENSSL"
++ lib.optional stdenv.isDarwin "SYS=darwin"
++ lib.optional stdenv.cc.isClang "CC=clang";
2024-06-30 08:16:52 +00:00
propagatedBuildInputs =
[ zlib ]
++ lib.optionals gnutlsSupport [
gnutls
nettle
]
2024-05-02 00:46:19 +00:00
++ lib.optional opensslSupport openssl;
2024-06-30 08:16:52 +00:00
outputs = [
"out"
"dev"
];
2024-05-02 00:46:19 +00:00
separateDebugInfo = true;
meta = with lib; {
description = "Toolkit for RTMP streams";
homepage = "https://rtmpdump.mplayerhq.hu/";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ codyopel ];
};
}