[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
177/295: gnu: Add srt.
From: |
guix-commits |
Subject: |
177/295: gnu: Add srt. |
Date: |
Mon, 27 Jul 2020 06:26:03 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit e92c51e41bda150dadd373db28336b7a4b2e441a
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri Jul 3 09:44:14 2020 -0400
gnu: Add srt.
* gnu/packages/networking.scm (srt): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/networking.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 7a46731..1720138 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -125,14 +125,57 @@
#:use-module (gnu packages shells)
#:use-module (gnu packages sqlite)
#:use-module (gnu packages ssh)
+ #:use-module (gnu packages tcl)
#:use-module (gnu packages textutils)
#:use-module (gnu packages tls)
#:use-module (gnu packages valgrind)
+ #:use-module (gnu packages version-control)
#:use-module (gnu packages web)
#:use-module (gnu packages wxwidgets)
#:use-module (gnu packages xml)
#:use-module (ice-9 match))
+(define-public srt
+ (package
+ (name "srt")
+ (version "1.4.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/Haivision/srt.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "01xaq44j95kbgqfl41pnybvqy0yq6wd4wdw88ckylzf0nzp977xz"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(#:configure-flags
+ (list
+ (string-append "-DCMAKE_INSTALL_BINDIR="
+ (assoc-ref %outputs "out") "/bin")
+ (string-append "-DCMAKE_INSTALL_LIBDIR="
+ (assoc-ref %outputs "out") "/lib")
+ (string-append "-DINSTALL_SHARED_DIR="
+ (assoc-ref %outputs "out") "/lib")
+ (string-append "-DCMAKE_INSTALL_INCLUDEDIR="
+ (assoc-ref %outputs "out") "/include")
+ "-DENABLE_UNITTESTS=ON"
+ "-DENABLE_CODE_COVERAGE=ON")))
+ (native-inputs
+ `(("git" ,git-minimal)
+ ("gtest" ,googletest)
+ ("pkg-config" ,pkg-config)
+ ("tclsh" ,tcl)))
+ (propagated-inputs
+ `(("openssl" ,openssl)))
+ (synopsis "Secure Reliable Transport")
+ (description "SRT is a transport technology that optimizes streaming
+performance across unpredictable networks, such as the Internet.")
+ (home-page "https://www.srtalliance.org/")
+ (license license:mpl2.0)))
+
(define-public lksctp-tools
(package
(name "lksctp-tools")
- 156/295: gnu: Add ccextractor., (continued)
- 156/295: gnu: Add ccextractor., guix-commits, 2020/07/27
- 157/295: gnu: Add libdc1394., guix-commits, 2020/07/27
- 158/295: gnu: Add ruby-slim., guix-commits, 2020/07/27
- 159/295: gnu: Add libmpeg3., guix-commits, 2020/07/27
- 163/295: gnu: Add directfb., guix-commits, 2020/07/27
- 166/295: gnu: Add ffmpeg-2.8., guix-commits, 2020/07/27
- 170/295: gnu: Add schroedinger., guix-commits, 2020/07/27
- 182/295: gnu: Add webrtc-audio-processing., guix-commits, 2020/07/27
- 171/295: gnu: Add libquicktime., guix-commits, 2020/07/27
- 176/295: gnu: Add lksctp-tools., guix-commits, 2020/07/27
- 177/295: gnu: Add srt.,
guix-commits <=
- 172/295: gnu: Add mjpegtools., guix-commits, 2020/07/27
- 173/295: gnu: Add libofa., guix-commits, 2020/07/27
- 183/295: gnu: Add wildmidi., guix-commits, 2020/07/27
- 181/295: gnu: Add vo-aacenc., guix-commits, 2020/07/27
- 175/295: gnu: Add tinyalsa., guix-commits, 2020/07/27
- 187/295: gnu: Add libnice., guix-commits, 2020/07/27
- 189/295: gnu: gtk+-2: Update package definition., guix-commits, 2020/07/27
- 194/295: gnu: gtksourceview: Update package definition., guix-commits, 2020/07/27
- 197/295: gnu: fuse: Update package definition., guix-commits, 2020/07/27
- 199/295: gnu: gvfs: Update package definition., guix-commits, 2020/07/27