[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#73073] [PATCH v2 5/8] gnu: farstream: Move common origin from phase
From: |
Simon Tournier |
Subject: |
[bug#73073] [PATCH v2 5/8] gnu: farstream: Move common origin from phases to native-inputs. |
Date: |
Tue, 10 Sep 2024 03:27:13 +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..56bd54a27f 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -263,16 +263,8 @@ (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
+ (git-file-name "common" "latest.52adcdb"))
"common")))
(add-after 'unpack 'disable-problematic-tests
(lambda _
@@ -296,7 +288,17 @@ (define-public farstream
libxslt
perl
pkg-config
- python-wrapper))
+ python-wrapper
+ (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 0/6] Allow origin with label as inputs., (continued)
- [bug#73073] [PATCH v2 3/8] gnu: dmd-bootstrap: Move phobos origin from phases to native-inputs., Simon Tournier, 2024/09/09
- [bug#73073] [PATCH v2 4/8] gnu: smithforth: Move system.fs origin from phases to native-inputs., Simon Tournier, 2024/09/09
- [bug#73073] [PATCH v2 7/8] gnu: git: Move git-manpages origin from phases to native-inputs., Simon Tournier, 2024/09/09
- [bug#73073] [PATCH v2 5/8] gnu: farstream: Move common origin from phases to native-inputs.,
Simon Tournier <=
- [bug#73073] [PATCH v2 2/8] gnu: gnome-recipes: Move libgd origin from phases to native-inputs., Simon Tournier, 2024/09/09
[bug#73073] [PATCH v2 6/8] gnu: gnulib: Move phobos origin from phases to native-inputs., Simon Tournier, 2024/09/09
[bug#73073] [PATCH v2 8/8] gnu: cgit: Remove input labels., Simon Tournier, 2024/09/09