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

38 lines
989 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, fetchurl, python3Packages, installShellFiles }:
2017-09-28 07:16:09 +00:00
python3Packages.buildPythonApplication rec {
2020-03-29 10:34:50 +00:00
pname = "unicode";
version = "2.7";
2017-09-28 07:16:09 +00:00
src = fetchFromGitHub {
owner = "garabik";
repo = "unicode";
rev = "v${version}";
sha256 = "15d9yvarxsiy0whx1mxzsjnnkrjdm3ga4qv2yy398mk0jh763q9v";
2017-09-28 07:16:09 +00:00
};
ucdtxt = fetchurl {
url = "https://www.unicode.org/Public/13.0.0/ucd/UnicodeData.txt";
sha256 = "1fz8fcd23lxyl97ay8h42zvkcgcg8l81b2dm05nklkddr2zzpgxx";
2017-09-28 07:16:09 +00:00
};
nativeBuildInputs = [ installShellFiles ];
2017-09-28 07:16:09 +00:00
postFixup = ''
substituteInPlace "$out/bin/.unicode-wrapped" \
--replace "/usr/share/unicode/UnicodeData.txt" "$ucdtxt"
'';
postInstall = ''
installManPage paracode.1 unicode.1
'';
meta = with lib; {
2017-09-28 07:16:09 +00:00
description = "Display unicode character properties";
homepage = "https://github.com/garabik/unicode";
2017-09-28 07:16:09 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.woffs ];
platforms = platforms.all;
2017-09-28 07:16:09 +00:00
};
}