Use guix convention for commit versions

This commit is contained in:
Collin J. Doering 2021-01-01 18:47:36 -05:00
parent 7fbdf7283d
commit aedd58ce31
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 114 additions and 106 deletions

View File

@ -36,22 +36,24 @@
;;;
(define-public emacs-treemacs-20201225
(let ((commit "6b045fd585421ab3c9e1185c2508d34af700490b")
(revision "1"))
(package
(inherit emacs-treemacs)
(version "6b045fd585421ab3c9e1185c2508d34af700490b")
(version (git-version "2.8.0" revision commit))
(name "emacs-treemacs-20201225")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Alexander-Miller/treemacs")
(commit version)))
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0sifzkhyd4k2ffvf2gn6frg7qd28my8w7wy2cqqa4i9gxhbflbsj"))))
(arguments (substitute-keyword-arguments (package-arguments emacs-treemacs)
((#:phases phases)
`(alist-delete 'check ,phases))))))
`(alist-delete 'check ,phases)))))))
(define-public emacs-treemacs-extra-20201225
(package
@ -75,30 +77,34 @@
(copy-recursively "../extra" ".")))))))))
(define-public emacs-all-the-icons-20201225
(let ((commit "6917b08f64dd8487e23769433d6cb9ba11f4152f")
(revision "1"))
(package
(inherit emacs-all-the-icons)
(version "6917b08f64dd8487e23769433d6cb9ba11f4152f")
(version (git-version "4.0.1" revision commit))
(name "emacs-all-the-icons-20201225")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/domtronn/all-the-icons.el")
(commit version)))
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0jzpil1k5brg4dvy0fxibbwwb2hkni5fkxng4n0wfv6099b2zc68"))))))
"0jzpil1k5brg4dvy0fxibbwwb2hkni5fkxng4n0wfv6099b2zc68")))))))
(define-public emacs-doom-themes-20201225
(let ((commit "3761dfce75144e49789b6576e187acd82e2731ee")
(revision "1"))
(package
(inherit emacs-doom-themes)
(version "3761dfce75144e49789b6576e187acd82e2731ee")
(version (git-version "2.1.6" revision commit))
(name "emacs-doom-themes-20201225")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/hlissner/emacs-doom-themes")
(commit version)))
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0a0lz9kkaaxj2r8xkcgyczz9pxq5hb4kd8mivqxmcj9572xs6v1r"))))
@ -109,7 +115,7 @@
`(modify-phases ,phases
(add-after 'unpack 'remove-broken-themes
(lambda _
(delete-file "themes/doom-plain-theme.el")))))))))
(delete-file "themes/doom-plain-theme.el"))))))))))
(define-public emacs-helm-tramp
(package
@ -530,14 +536,16 @@ See perspective.el on github: https://github.com/nex3/perspective-el
(license license:gpl3+)))
(define-public emacs-helm-rg
(let ((commit "ee0a3c09da0c843715344919400ab0a0190cc9dc")
(revision "1"))
(package
(name "emacs-helm-rg")
(version "ee0a3c09da0c843715344919400ab0a0190cc9dc")
(version (git-version "0.1" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cosmicexplorer/helm-rg")
(commit version)))
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
@ -586,4 +594,4 @@ See perspective.el on github: https://github.com/nex3/perspective-el
(synopsis "Helm interface to ripgrep")
(description
"Helm interface for ripgrep.")
(license license:gpl3+)))
(license license:gpl3+))))