diff options
author | Simon Tournier <zimon.toutoune@gmail.com> | 2024-09-10 03:27:13 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-12-16 00:19:56 +0100 |
commit | 85817170656cafe9dc5e4d5964cfe0d2b7ae6be8 (patch) | |
tree | 7e9d0c47fe84eb4bcc37e7f38c9d6844af8285ad /gnu | |
parent | 6606c464908b5f618351230fe27c8ea45620db91 (diff) | |
download | guix-85817170656cafe9dc5e4d5964cfe0d2b7ae6be8.tar.gz guix-85817170656cafe9dc5e4d5964cfe0d2b7ae6be8.zip |
gnu: farstream: Move common origin from phases to native-inputs.
* gnu/packages/dlang.scm (farstream)[arguments]<phases>: Move common
origin from here...
[native-inputs]: ...to here.
Change-Id: I0023bca2fc021b82875b1ec7329c7e37116df0b3
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/freedesktop.scm | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index 08b5d7e351..721a0d4c38 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -268,16 +268,8 @@ application-centers for distributions.") (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 _ @@ -301,7 +293,17 @@ application-centers for distributions.") 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+ |