diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2025-01-21 03:51:35 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2025-01-21 03:51:58 +0300 |
| commit | 91a9f9dd8bb9a7c356ddedebf06d20a3f9e84258 (patch) | |
| tree | aa7dc1bb9ebbb80fc8ba1846c8916f0ecfea8a01 | |
| parent | packages: video: Add missing build-system. (diff) | |
| download | guix-wigust-91a9f9dd8bb9a7c356ddedebf06d20a3f9e84258.tar.gz | |
wigust: packages: ndi: Fetch source from http.
| -rw-r--r-- | guix/wigust/packages/video.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/guix/wigust/packages/video.scm b/guix/wigust/packages/video.scm index 92802b9..268318e 100644 --- a/guix/wigust/packages/video.scm +++ b/guix/wigust/packages/video.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2020, 2024 Oleg Pykhalov <go.wigust@gmail.com> +;;; Copyright © 2020, 2024, 2025 Oleg Pykhalov <go.wigust@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -88,7 +88,13 @@ channel/playlist and returns a link to the corresponding RSS feed.") (name "ndi") (version "5.6.1") ;NDI SDK for Linux/Version.txt ;; https://downloads.ndi.tv/SDK/NDI_SDK_Linux/Install_NDI_SDK_v5_Linux.tar.gz - (source (local-file "/home/oleg/Install_NDI_SDK_v5_Linux.tar.gz")) + (source + (origin + (method url-fetch) + (uri "https://iso.wugi.info/windows/Install_NDI_SDK_v5_Linux.tar.gz"); Limited access to LAN. + (sha256 + (base32 + "0wh5bqy9xx08wnfah92pgs4f6xn6mwfyhwdzbhf5ghkbw8pc7z0w")))) (build-system trivial-build-system) (inputs (list bash-minimal tar findutils coreutils gawk gzip tar glibc patchelf `(,gcc "lib") avahi)) (native-inputs `(("source" ,source))) |
