12345678910111213141516171819202122232425262728293031323334353637383940 |
- (define-module (emacs persp-projectile)
- #:use-module ((guix licenses) #:prefix license:)
- #:use-module (guix build-system emacs)
- #:use-module (guix packages)
- #:use-module (guix download)
- #:use-module (gnu packages emacs-xyz)
- #:use-module (gnu packages emacs))
- (define-public emacs-persp-projectile
- (package
- (name "emacs-persp-projectile")
- (version "20180616.1944")
- (source
- (origin
- (method url-fetch)
- (uri (string-append
- "https://melpa.org/packages/persp-projectile-"
- version
- ".el"))
- (sha256
- (base32
- "1pc1v6rc44wl7sq0qchgc4lxiy8lr7zvp0hygcp95c1x0dkqs8jl"))))
- (build-system emacs-build-system)
- (propagated-inputs
- `(("emacs-perspective" ,emacs-perspective)
- ("emacs-projectile" ,emacs-projectile)))
- (home-page "https://github.com/bbatsov/persp-projectile")
- (synopsis
- "Perspective integration with Projectile")
- (description
- "This library bridges perspective mode to the awesome library
- Projectile. The idea is to create a separate perspective when
- switching project. A perspective is an independent workspace for
- Emacs, similar to multiple desktops in Gnome and MacOS. I often work
- on many projects at the same time, and using perspective and
- projectile together allows me to easily know which project I'm current
- in, and focus on files that only belong to current project when
- switching buffer.")
- (license license:gpl3+)))
|