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.
49 lines
1.8 KiB
49 lines
1.8 KiB
;; 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"))))))) |
|
|
|
(define-public emacs-doom-modeline-dev |
|
(let ((base emacs-doom-modeline) |
|
(revision "26") |
|
(commit "440fd160b4dff530465938bed40094a0d413fc11")) |
|
(package |
|
(inherit base) |
|
(name "emacs-doom-modeline-dev") |
|
(version (git-version "3.3.2" revision commit)) |
|
(source (origin |
|
(method git-fetch) |
|
(uri (git-reference |
|
(url "https://github.com/seagle0128/doom-modeline") |
|
(commit commit))) |
|
(file-name (git-file-name name version)) |
|
(sha256 |
|
(base32 |
|
"0ablv6fyqb6mzzk7iyx24nj5xmmmhw7kqmi2xldjv0a7aplmxbqr")))) |
|
(propagated-inputs |
|
(modify-inputs (package-propagated-inputs base) |
|
(delete "emacs-all-the-icons" "emacs-dash"))))))
|
|
|