[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#73073] [PATCH 5/6] gnu: farstream: Move common origin from phases t
From: |
Simon Tournier |
Subject: |
[bug#73073] [PATCH 5/6] gnu: farstream: Move common origin from phases to native-inputs. |
Date: |
Fri, 6 Sep 2024 17:54:33 +0200 |
* gnu/packages/dlang.scm (farstream)[arguments]<phases>: Move common
origin from here...
[native-inputs]: ...to here.
Change-Id: I0023bca2fc021b82875b1ec7329c7e37116df0b3
---
gnu/packages/freedesktop.scm | 24 +++++++++++++-----------
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index cb1d625d24..cf4ccadfd0 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -263,16 +263,7 @@ (define-public farstream
(lambda _
(delete-file "autogen.sh")
(copy-recursively
- #$(origin
- (method git-fetch)
- (uri
- (git-reference
- (url
"https://gitlab.freedesktop.org/gstreamer/common.git")
- (commit "52adcdb89a9eb527df38c569539d95c1c7aeda6e")))
- (file-name (git-file-name "common" "latest.52adcdb"))
- (sha256
- (base32
- "1zlm1q1lgcb76gi82rial5bwy2j9sz1x6x48ijhiz89cml7xxd1r")))
+ #$(this-package-native-input "common")
"common")))
(add-after 'unpack 'disable-problematic-tests
(lambda _
@@ -296,7 +287,18 @@ (define-public farstream
libxslt
perl
pkg-config
- python-wrapper))
+ python-wrapper
+ `("common"
+ ,(origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://gitlab.freedesktop.org/gstreamer/common.git")
+ (commit "52adcdb89a9eb527df38c569539d95c1c7aeda6e")))
+ (file-name (git-file-name "common" "latest.52adcdb"))
+ (sha256
+ (base32
+ "1zlm1q1lgcb76gi82rial5bwy2j9sz1x6x48ijhiz89cml7xxd1r"))))))
(inputs
(list glib
gtk+
--
2.45.2
[bug#73073] [PATCH 5/6] gnu: farstream: Move common origin from phases to native-inputs.,
Simon Tournier <=
[bug#73073] [PATCH 6/6] gnu: gnulib: Move phobos origin from phases to native-inputs., Simon Tournier, 2024/09/06
[bug#73073] [PATCH 1/6] guix: packages: Allow origin with label as inputs., Simon Tournier, 2024/09/06
[bug#73073] [PATCH 0/6] Allow origin with label as inputs., Ludovic Courtès, 2024/09/06
[bug#73073] [PATCH v2 0/8] Allow origin inside inputs with "new style"., Simon Tournier, 2024/09/09