nixpkgs/pkgs/tools/misc/unicode/default.nix

32 lines
873 B
Nix
Raw Normal View History

2017-09-28 07:16:09 +00:00
{ stdenv, fetchFromGitHub, fetchurl, python3Packages }:
python3Packages.buildPythonApplication rec {
name = "unicode-${version}";
version = "2.6";
2017-09-28 07:16:09 +00:00
src = fetchFromGitHub {
owner = "garabik";
repo = "unicode";
rev = "v${version}";
sha256 = "17hh4nwl5njsh7lnff583j2axn6rfvfbiqwp72n7vcsgkiszw4kg";
2017-09-28 07:16:09 +00:00
};
ucdtxt = fetchurl {
url = http://www.unicode.org/Public/11.0.0/ucd/UnicodeData.txt;
sha256 = "16b0jzvvzarnlxdvs2izd5ia0ipbd87md143dc6lv6xpdqcs75s9";
2017-09-28 07:16:09 +00:00
};
postFixup = ''
substituteInPlace "$out/bin/.unicode-wrapped" \
--replace "/usr/share/unicode/UnicodeData.txt" "$ucdtxt"
'';
meta = with stdenv.lib; {
description = "Display unicode character properties";
homepage = https://github.com/garabik/unicode;
license = licenses.gpl3;
maintainers = [ maintainers.woffs ];
platforms = platforms.all;
2017-09-28 07:16:09 +00:00
};
}