mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 05:03:40 +00:00
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
@ -6043,6 +6043,12 @@
|
|||||||
fingerprint = "A506 C38D 5CC8 47D0 DF01 134A DA8B 833B 5260 4E63";
|
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 = {
|
jcumming = {
|
||||||
email = "jack@mudshark.org";
|
email = "jack@mudshark.org";
|
||||||
github = "jcumming";
|
github = "jcumming";
|
||||||
|
@ -232,6 +232,8 @@
|
|||||||
tree-sitter-langs = callPackage ./tree-sitter-langs { final = self; };
|
tree-sitter-langs = callPackage ./tree-sitter-langs { final = self; };
|
||||||
tsc = callPackage ./tsc { };
|
tsc = callPackage ./tsc { };
|
||||||
|
|
||||||
|
yes-no = callPackage ./yes-no { };
|
||||||
|
|
||||||
youtube-dl = callPackage ./youtube-dl { };
|
youtube-dl = callPackage ./youtube-dl { };
|
||||||
|
|
||||||
# From old emacsPackages (pre emacsPackagesNg)
|
# 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 New Issue
Block a user