mirror of https://codeberg.org/hako/Rosenthal.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
2 years ago
|
;; SPDX-FileCopyrightText: 2022 Hilton Chain <hako@ultrarare.space>
|
||
|
;;
|
||
|
;; SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
(define-module (rosenthal packages emacs-xyz)
|
||
|
#:use-module ((guix licenses) #:prefix license:)
|
||
|
#:use-module (guix build-system emacs)
|
||
|
#:use-module (guix gexp)
|
||
|
#:use-module (guix git-download)
|
||
|
#:use-module (guix packages)
|
||
|
#:use-module (gnu packages emacs-xyz))
|
||
|
|
||
|
(define-public emacs-company-dev
|
||
|
(let ((revision "357")
|
||
|
(commit "48fea7a905b3bcc6d97609316beced666da89b1f"))
|
||
|
(package
|
||
|
(inherit emacs-company)
|
||
|
(name "emacs-company-dev")
|
||
|
(version (git-version "0.9.13" revision commit))
|
||
|
(source (origin
|
||
|
(method git-fetch)
|
||
|
(uri (git-reference
|
||
|
(url "https://github.com/company-mode/company-mode")
|
||
|
(commit commit)))
|
||
|
(file-name (git-file-name name version))
|
||
|
(sha256
|
||
|
(base32
|
||
|
"17w9irn5aaxadsm5smz5cm1dxy0xb1hh0dnhwqclq3y5llrb21lx")))))))
|