Merge pull request #190159 from jcs-PR/emacsPkgs/yes-no
emacsPackages.yes-no: init at 2017-10-01
This commit is contained in:
commit
f8541c11de
3 changed files with 27 additions and 0 deletions
|
@ -6043,6 +6043,12 @@
|
|||
fingerprint = "A506 C38D 5CC8 47D0 DF01 134A DA8B 833B 5260 4E63";
|
||||
}];
|
||||
};
|
||||
jcs090218 = {
|
||||
email = "jcs090218@gmail.com";
|
||||
github = "jcs090218";
|
||||
githubId = 8685505;
|
||||
name = "Jen-Chieh Shen";
|
||||
};
|
||||
jcumming = {
|
||||
email = "jack@mudshark.org";
|
||||
github = "jcumming";
|
||||
|
|
|
@ -232,6 +232,8 @@
|
|||
tree-sitter-langs = callPackage ./tree-sitter-langs { final = self; };
|
||||
tsc = callPackage ./tsc { };
|
||||
|
||||
yes-no = callPackage ./yes-no { };
|
||||
|
||||
youtube-dl = callPackage ./youtube-dl { };
|
||||
|
||||
# From old emacsPackages (pre emacsPackagesNg)
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
{ lib, fetchurl, trivialBuild }:
|
||||
|
||||
trivialBuild {
|
||||
pname = "yes-no";
|
||||
version = "2017-10-01";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/143bcaeb679a8fa8a548e92a5a9d5c2baff50d9c/yes-no.el";
|
||||
sha256 = "03w4wfx885y89ckyd5d95n2571nmmzrll6kr0yan3ip2aw28xq3i";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Specify use of `y-or-n-p' or `yes-or-no-p' on a case-by-case basis";
|
||||
homepage = "https://www.emacswiki.org/emacs/yes-no.el";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ jcs090218 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue