me
/
guix
Archived
1
0
Fork 0

gnu: pitivi: Build from git source.

* gnu/packages/video.scm (pitivi)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2021-03-02 17:52:47 +01:00
parent 3ce7c1f3c3
commit e98c67b873
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 8 deletions

View File

@ -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)