mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: emacs-nix-mode: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-nix-mode)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
8e65ada235
commit
81a9ab87fc
1 changed files with 6 additions and 6 deletions
|
@ -13500,13 +13500,13 @@ to open SQLite databases.")
|
|||
(version "1.2.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/NixOS/nix-mode/archive/v"
|
||||
version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/NixOS/nix-mode.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"06aqz0czznsj8835jqnk794sy2p6pa8kxfqwh0nl5d5vxivria6z"))))
|
||||
(base32 "1vz3s2jx14nzy53f04d821n4f2s22ys5h9s7af6cnpynkwawyhhq"))))
|
||||
(build-system emacs-build-system)
|
||||
(inputs
|
||||
`(("emacs-company" ,emacs-company)
|
||||
|
|
Loading…
Reference in a new issue