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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index a312e461d5..b26ef100f6 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -499,24 +499,6 @@ performance across unpredictable networks, such as the Internet.") (home-page "https://www.srtalliance.org/") (license license:mpl2.0))) -;; FFmpeg, GStreamer, and VLC don't support SRT 1.4.2 yet. -(define-public srt-1.4.1 - (package - (inherit srt) - (name "srt") - (version "1.4.1") - (source - (origin - (method git-fetch) - (uri - (git-reference - (url "https://github.com/Haivision/srt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "01xaq44j95kbgqfl41pnybvqy0yq6wd4wdw88ckylzf0nzp977xz")))))) - (define-public lksctp-tools (package (name "lksctp-tools") |