From 1b6e8eb3fda136d17883425d4538b863865d6791 Mon Sep 17 00:00:00 2001 From: Thanos Apollo Date: Tue, 7 Feb 2023 21:43:49 +0200 Subject: packages: add exwm-firefox-core --- guix-packages/starship.scm | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) (limited to 'guix-packages/starship.scm') 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 -- cgit v1.2.3