Add request derivation
This commit is contained in:
parent
511f95fee0
commit
d7bda5c580
@ -719,6 +719,31 @@ let self = _self // overrides;
|
|||||||
meta = { license = gpl3Plus; };
|
meta = { license = gpl3Plus; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
request = melpaBuild rec {
|
||||||
|
pname = "request";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tkf";
|
||||||
|
repo = "emacs-${pname}";
|
||||||
|
rev = "adf7de452f9914406bfb693541f1d280093c4efd";
|
||||||
|
sha256 = "0dja4g43zfjbxqvz2cgivgq5sfm6fz1563qgrp4yxknl7bdggb92";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Easy HTTP request for Emacs Lisp";
|
||||||
|
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 {
|
||||||
pname = "rich-minority";
|
pname = "rich-minority";
|
||||||
version = "0.1.1";
|
version = "0.1.1";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user