Revert "gnu: emacs-ghub: Update to 3.2.0."

This change should be applied once we update our magit package.

This reverts commit b96f0e6ff9.
This commit is contained in:
Jelle Licht 2019-01-11 13:31:47 +01:00
parent f1de676ea8
commit 5a26f879c3
No known key found for this signature in database
GPG Key ID: DA4597F947B41025
1 changed files with 7 additions and 12 deletions

View File

@ -677,16 +677,16 @@ deliver data to mobile and web apps.")
(define-public emacs-ghub (define-public emacs-ghub
(package (package
(name "emacs-ghub") (name "emacs-ghub")
(version "3.2.0") (version "2.0.1")
(source (origin (source (origin
(method git-fetch) (method url-fetch)
(uri (git-reference (uri (string-append
(url "https://github.com/magit/ghub.git") "https://github.com/magit/ghub/archive/v"
(commit (string-append "v" version)))) version ".tar.gz"))
(file-name (git-file-name name version)) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0lp52qygyavddl1lrgsyb6mq7hcf9h89dy2pzya3mb2va49f0vvl")))) "0d0qj5r1bm2aidi61rigrdaycxnyb7y1ivb3h8rpvvapsf8sk7z0"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(arguments (arguments
`(#:phases `(#:phases
@ -694,11 +694,6 @@ deliver data to mobile and web apps.")
(add-before 'install 'make-info (add-before 'install 'make-info
(lambda _ (lambda _
(invoke "make" "info")))))) (invoke "make" "info"))))))
(propagated-inputs
`(("emacs-dash" ,emacs-dash)
("emacs-graphql" ,emacs-graphql)
("emacs-let-alist" ,emacs-let-alist)
("emacs-treepy" ,emacs-treepy)))
(native-inputs (native-inputs
`(("texinfo" ,texinfo))) `(("texinfo" ,texinfo)))
(home-page "https://github.com/magit/ghub") (home-page "https://github.com/magit/ghub")