gnu: mypaint-brushes: Fetch source from git.

* gnu/packages/gimp.scm (mypaint-brushes)[source]: Fetch source from git.
This commit is contained in:
Ricardo Wurmus 2018-05-29 23:13:25 +02:00
parent 5686be393b
commit e5bbfc7df0
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -23,6 +23,7 @@
(define-module (gnu packages gimp)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix utils)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system gnu)
@ -275,13 +276,14 @@ (define-public mypaint-brushes
(name "mypaint-brushes")
(version "1.3.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/Jehan/mypaint-brushes/"
"archive/v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/Jehan/mypaint-brushes.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"055j2rgkav2024zl6y5hxb2ra0vbx58607d6sz7ml2351r1bcjvh"))))
"1iz89z6v2mp8j1lrf942k561s8311i3s34ap36wh4rybb2lq15m0"))))
(build-system gnu-build-system)
(arguments
`(#:phases