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

53 lines
1.6 KiB
Nix
Raw Normal View History

2021-01-15 10:19:50 +01:00
{ lib, stdenv, fetchgit, fetchpatch, zlib
, 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);
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 {
pname = "rtmpdump";
2019-08-31 05:43:51 +02:00
version = "2019-03-30";
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";
};
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";
})
];
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"
++ optional stdenv.cc.isClang "CC=clang";
propagatedBuildInputs = [ zlib ]
++ optionals gnutlsSupport [ gnutls nettle ]
2015-02-17 22:15:03 +01:00
++ optional opensslSupport openssl;
outputs = [ "out" "dev" ];
2019-08-31 05:43:51 +02:00
separateDebugInfo = true;
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;
maintainers = with maintainers; [ codyopel ];
};
}