lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 39 lines 969 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "flvstreamer"; 5 version = "2.1c1"; 6 7 src = fetchurl { 8 url = "mirror://savannah/flvstreamer/source/flvstreamer-${version}.tar.gz"; 9 sha256 = "e90e24e13a48c57b1be01e41c9a7ec41f59953cdb862b50cf3e667429394d1ee"; 10 }; 11 12 buildPhase = '' 13 make CC=${stdenv.cc.targetPrefix}cc posix 14 ''; 15 16 installPhase = '' 17 mkdir -p $out/bin 18 cp flvstreamer $out/bin 19 cp streams $out/bin 20 cp rtmpsrv $out/bin 21 cp rtmpsuck $out/bin 22 ''; 23 24 meta = { 25 description = "Command-line RTMP client"; 26 27 longDescription = 28 '' flvstreamer is an open source command-line RTMP client intended to 29 stream audio or video content from all types of flash or rtmp servers. 30 ''; 31 32 license = lib.licenses.gpl2Plus; 33 34 homepage = "https://savannah.nongnu.org/projects/flvstreamer"; 35 36 maintainers = [ lib.maintainers.thammers ]; 37 platforms = with lib.platforms; linux ++ darwin; 38 }; 39}