guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: gnu: pitivi: Build from git source.


From: guix-commits
Subject: 01/03: gnu: pitivi: Build from git source.
Date: Tue, 2 Mar 2021 12:31:44 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit e98c67b87312cee5bfc971b063b82e02ed941329
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Tue Mar 2 17:52:47 2021 +0100

    gnu: pitivi: Build from git source.
    
    * gnu/packages/video.scm (pitivi)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/video.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index f083df1..d27ead3 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4120,14 +4120,15 @@ tools for styling them, including a built-in real-time 
video preview.")
    (package
      (name "pitivi")
      (version (string-append latest-semver "-" %version))
-     (source (origin
-               (method url-fetch)
-               (uri (string-append "mirror://gnome/sources/" name "/"
-                                   (version-major+minor %version) "/"
-                                   name "-" %version ".tar.xz"))
-               (sha256
-                (base32
-                 "0hzvv4wia4rk0kvq16y27imq2qd4q5lg3vx99hdcjdb1x3zqqfg0"))))
+     (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+              (url "https://gitlab.gnome.org/GNOME/pitivi.git";)
+              (commit %version)))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "13x5acs29za5y5n058z86qqrzdx53w05zkw91zkqx0m2hn94dy3p"))))
      (build-system meson-build-system)
      (inputs
       `(("glib" ,glib)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]