emacs-packages: cleanup and fix request and request-deferred
This commit is contained in:
parent
0031120921
commit
e403495938
@ -1093,7 +1093,9 @@ let self = _self // overrides;
|
|||||||
sha256 = "0dja4g43zfjbxqvz2cgivgq5sfm6fz1563qgrp4yxknl7bdggb92";
|
sha256 = "0dja4g43zfjbxqvz2cgivgq5sfm6fz1563qgrp4yxknl7bdggb92";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
files = [ "request.el" ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
description = "Easy HTTP request for Emacs Lisp";
|
description = "Easy HTTP request for Emacs Lisp";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Request.el is a HTTP request library with multiple backends. It supports
|
Request.el is a HTTP request library with multiple backends. It supports
|
||||||
@ -1102,36 +1104,18 @@ let self = _self // overrides;
|
|||||||
Library author can use request.el to avoid imposing external dependencies
|
Library author can use request.el to avoid imposing external dependencies
|
||||||
such as curl to users while giving richer experience for users who have curl.
|
such as curl to users while giving richer experience for users who have curl.
|
||||||
'';
|
'';
|
||||||
homepage = https://github.com/tkf/emacs-request;
|
|
||||||
license = gpl3Plus;
|
license = gpl3Plus;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
request-deferred = melpaBuild rec {
|
request-deferred = melpaBuild rec {
|
||||||
pname = "request-deferred";
|
pname = "request-deferred";
|
||||||
version = "0.2.0";
|
version = request.version;
|
||||||
|
src = request.src;
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "tkf";
|
|
||||||
repo = "emacs-request";
|
|
||||||
rev = "adf7de452f9914406bfb693541f1d280093c4efd";
|
|
||||||
sha256 = "0dja4g43zfjbxqvz2cgivgq5sfm6fz1563qgrp4yxknl7bdggb92";
|
|
||||||
};
|
|
||||||
|
|
||||||
packageRequires = [ request deferred ];
|
packageRequires = [ request deferred ];
|
||||||
|
files = [ "request-deferred.el" ];
|
||||||
meta = with stdenv.lib; {
|
meta = request.meta
|
||||||
description = "Easy HTTP request for Emacs Lisp";
|
// { description = "${request.meta.description} (deferred)"; };
|
||||||
longDescription = ''
|
|
||||||
Request.el is a HTTP request library with multiple backends. It supports
|
|
||||||
url.el which is shipped with Emacs and curl command line program. User
|
|
||||||
can use curl when s/he has it, as curl is more reliable than url.el.
|
|
||||||
Library author can use request.el to avoid imposing external dependencies
|
|
||||||
such as curl to users while giving richer experience for users who have curl.
|
|
||||||
'';
|
|
||||||
homepage = https://github.com/tkf/emacs-request;
|
|
||||||
license = gpl3Plus;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
rich-minority = melpaBuild rec {
|
rich-minority = melpaBuild rec {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user