2021-01-15 10:19:50 +01:00
|
|
|
{ lib, stdenv, fetchgit, fetchpatch, zlib
|
2015-06-01 13:08:21 +02:00
|
|
|
, gnutlsSupport ? false, gnutls ? null, nettle ? null
|
2015-05-01 23:37:10 +02:00
|
|
|
, opensslSupport ? true, openssl ? null
|
2015-02-17 22:15:03 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
# Must have an ssl library enabled
|
|
|
|
assert (gnutlsSupport || opensslSupport);
|
2015-06-01 13:08:21 +02:00
|
|
|
assert gnutlsSupport -> gnutlsSupport != null && nettle != null && !opensslSupport;
|
|
|
|
assert opensslSupport -> openssl != null && !gnutlsSupport;
|
2015-02-17 22:15:03 +01:00
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
with lib;
|
2019-08-31 05:43:51 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "rtmpdump";
|
2019-08-31 05:43:51 +02:00
|
|
|
version = "2019-03-30";
|
2010-04-30 23:46:55 +02:00
|
|
|
|
2011-09-25 11:04:24 +02:00
|
|
|
src = fetchgit {
|
2019-08-31 05:43:51 +02:00
|
|
|
url = "git://git.ffmpeg.org/rtmpdump";
|
2015-02-17 22:15:03 +01:00
|
|
|
# Currently the latest commit is used (a release has not been made since 2011, i.e. '2.4')
|
2019-08-31 05:43:51 +02:00
|
|
|
rev = "c5f04a58fc2aeea6296ca7c44ee4734c18401aa3";
|
|
|
|
sha256 = "07ias612jgmxpam9h418kvlag32da914jsnjsfyafklpnh8gdzjb";
|
2010-04-30 23:46:55 +02:00
|
|
|
};
|
|
|
|
|
2019-08-31 05:40:32 +02:00
|
|
|
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";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-01-24 10:19:10 +01:00
|
|
|
makeFlags = [ "prefix=$(out)" ]
|
2015-02-17 22:15:03 +01:00
|
|
|
++ optional gnutlsSupport "CRYPTO=GNUTLS"
|
2015-04-03 02:46:09 +02:00
|
|
|
++ optional opensslSupport "CRYPTO=OPENSSL"
|
2015-04-03 19:53:54 +02:00
|
|
|
++ optional stdenv.isDarwin "SYS=darwin"
|
2015-05-11 23:37:53 +02:00
|
|
|
++ optional stdenv.cc.isClang "CC=clang";
|
2010-04-30 23:46:55 +02:00
|
|
|
|
2015-05-15 21:38:50 +02:00
|
|
|
propagatedBuildInputs = [ zlib ]
|
2015-06-01 13:08:21 +02:00
|
|
|
++ optionals gnutlsSupport [ gnutls nettle ]
|
2015-02-17 22:15:03 +01:00
|
|
|
++ optional opensslSupport openssl;
|
2010-04-30 23:46:55 +02:00
|
|
|
|
2017-03-20 14:43:55 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2019-08-31 05:43:51 +02:00
|
|
|
separateDebugInfo = true;
|
|
|
|
|
2010-04-30 23:46:55 +02:00
|
|
|
meta = {
|
|
|
|
description = "Toolkit for RTMP streams";
|
2019-08-31 05:43:51 +02:00
|
|
|
homepage = "http://rtmpdump.mplayerhq.hu/";
|
2015-02-17 22:15:03 +01:00
|
|
|
license = licenses.gpl2;
|
2015-04-03 02:46:09 +02:00
|
|
|
platforms = platforms.unix;
|
2018-07-22 21:50:19 +02:00
|
|
|
maintainers = with maintainers; [ codyopel ];
|
2010-04-30 23:46:55 +02:00
|
|
|
};
|
|
|
|
}
|