summary refs log tree commit diff
path: root/pkgs/tools/networking/flvstreamer/default.nix
blob: d31751e7d5ca76b9da784070c7116d09f67a9dd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {

  name = "flvstreamer-2.1c1";

  src = fetchurl {
    url = "mirror://savannah/flvstreamer/source/${name}.tar.gz";
    sha256 = "e90e24e13a48c57b1be01e41c9a7ec41f59953cdb862b50cf3e667429394d1ee";
  };

  buildPhase = ''
    make CC=${stdenv.cc.targetPrefix}cc posix
  '';

  installPhase = ''
    mkdir -p $out/bin
    cp flvstreamer $out/bin
    cp streams $out/bin
    cp rtmpsrv $out/bin
    cp rtmpsuck $out/bin
  '';

  meta = {
    description = "Command-line RTMP client";

    longDescription =
      '' flvstreamer is an open source command-line RTMP client intended to
         stream audio or video content from all types of flash or rtmp servers.
      '';

    license = lib.licenses.gpl2Plus;

    homepage = "https://savannah.nongnu.org/projects/flvstreamer";

    maintainers = [ lib.maintainers.thammers ];
    platforms = with lib.platforms; linux ++ darwin;
  };
}