> If you think a single package is appropriate, could you make a patch for > it? > > Since "dired-hacks" has no releases, we have to use 'git-fetch' instead > of 'url-fetch' for source. It should look something like this: > > (define-public emacs-dired-hacks > (let ((commit "eda68006ce73bbf6b9b995bfd70d08bec8cade36") > (revision "1")) > (package > (name "emacs-dired-hacks") > (version (string-append "0.0.0-" revision "." > (string-take commit 7))) > (source (origin > (method git-fetch) > (uri (git-reference > (url "https://github.com/Fuco1/dired-hacks.git") > (commit commit))) > (file-name (string-append name "-" version "-checkout")) > (sha256 > (base32 > "some-letters-and-numbers-here")))) > ...))) > > > BTW we already have a single "emacs-ivy" package (instead of "ivy", > "swiper" and "counsel" as it is split on MELPA). Thanks, I prepared all this in one patch.