summaryrefslogtreecommitdiff
path: root/guix-packages/starship.scm
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-02-08 01:43:15 +0200
committerGitHub <[email protected]>2023-02-08 01:43:15 +0200
commit558a2b9d767203c52cd0ae35b508e2069f99d145 (patch)
tree364d15ab883570354948832702884416eb1d0e97 /guix-packages/starship.scm
parent7e4fc1d1eb857c6ec21404968d9da0e3162a9bb9 (diff)
parentcf1b785be36c10c7d098363b4a8e26f566f216a7 (diff)
Merge pull request #2 from ThanosApollo/update-doc
Update doc
Diffstat (limited to 'guix-packages/starship.scm')
-rw-r--r--guix-packages/starship.scm24
1 files changed, 22 insertions, 2 deletions
diff --git a/guix-packages/starship.scm b/guix-packages/starship.scm
index 7293dc3..cd4319f 100644
--- a/guix-packages/starship.scm
+++ b/guix-packages/starship.scm
@@ -1,5 +1,5 @@
-(define-module (starship)
+(define-module (my-packages)
#:use-module (gnu packages)
#:use-module (gnu packages build-tools)
#:use-module (guix build-system copy)
@@ -9,7 +9,8 @@
#:use-module (guix packages)
#:use-module (guix gexp)
#:use-module (guix build-system gnu)
- #:use-module (guix build-system asdf))
+ #:use-module (guix build-system asdf)
+ #:use-module (guix build-system emacs))
;; A temporary fix based on this patch:
;;
@@ -33,4 +34,23 @@
(home-page "https://starship.rs/")
(license gpl2+)))
+(define-public exwm-firefox-core
+ (package
+ (name "exwm-firefox-core")
+ (version "1.0")
+ (home-page "https://github.com/walseb/exwm-firefox-core")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0w2w20lxx8l662xdcvjdb033sglhgfg3dnm5jfjb5z5sixwd37x0"))))
+ (build-system emacs-build-system)
+ (synopsis "Library for executing firefox function through EXWM")
+ (description "sadf")
+ (license gpl3+)))
+
starship-prompt-bin