-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unicode: init at 2.5 #29891
unicode: init at 2.5 #29891
Conversation
@@ -19224,6 +19224,8 @@ with pkgs; | |||
|
|||
utf8proc = callPackage ../development/libraries/utf8proc { }; | |||
|
|||
unicode-paracode = callPackage ../tools/misc/unicode { }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have used "unicode-paracode" here because with "unicode" I get
error: value is a set while a Boolean was expected
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is used as argument in different locations like ncurses
.
pkgs/tools/misc/unicode/default.nix
Outdated
''; | ||
|
||
meta = with stdenv.lib; { | ||
description = "display unicode character properties"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Capitalize display
e514996
to
be12099
Compare
Thanks! |
}; | ||
|
||
ucdtxt = fetchurl { | ||
url = http://www.unicode.org/Public/11.0.0/ucd/UnicodeData-11.0.0d1.txt; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it is better not to depend on not-yet-released Unicode data. I guess this file will be renamed UnicodeData.txt
in the future, and this URL will break.
Related: there was a proposal at #29885 to move Unicode data to the separate package that other packages may depend on.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right, I'll change that to the final 10.0.0 version.
Motivation for this change
a great tool to explore unicode from the command line
Things done
build-use-sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)