uniscribe: init at 1.7.0 (#142990)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
main
Jeremy Kolb 3 years ago committed by GitHub
parent 1531006d91
commit cdb3a5613e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      maintainers/maintainer-list.nix
  2. 3
      pkgs/tools/text/uniscribe/Gemfile
  3. 37
      pkgs/tools/text/uniscribe/Gemfile.lock
  4. 30
      pkgs/tools/text/uniscribe/default.nix
  5. 1766
      pkgs/tools/text/uniscribe/gemset.nix
  6. 2
      pkgs/top-level/all-packages.nix

@ -6053,6 +6053,12 @@
githubId = 8260207;
name = "Karthik Iyengar";
};
kjeremy = {
email = "kjeremy@gmail.com";
name = "Jeremy Kolb";
github = "kjeremy";
githubId = 4325700;
};
kkallio = {
email = "tierpluspluslists@gmail.com";
name = "Karn Kallio";

@ -0,0 +1,3 @@
source "https://rubygems.org"
gem "uniscribe"

@ -0,0 +1,37 @@
GEM
remote: https://rubygems.org/
specs:
characteristics (1.4.0)
unicode-categories (~> 1.7)
paint (2.2.1)
rationalist (2.0.1)
symbolify (1.4.0)
characteristics (>= 0.8, < 2.0)
unicode-categories (1.7.0)
unicode-display_width (2.1.0)
unicode-emoji (2.9.0)
unicode-version (~> 1.0)
unicode-name (1.10.0)
unicode-types (~> 1.7)
unicode-sequence_name (1.10.0)
unicode-types (1.7.0)
unicode-version (1.1.0)
uniscribe (1.7.0)
characteristics (~> 1.4)
paint (>= 0.9, < 3.0)
rationalist (~> 2.0, >= 2.0.1)
symbolify (~> 1.4)
unicode-display_width (~> 2.1)
unicode-emoji (~> 2.9)
unicode-name (~> 1.10)
unicode-sequence_name (~> 1.10)
unicode-version (~> 1.1)
PLATFORMS
ruby
DEPENDENCIES
uniscribe
BUNDLED WITH
2.1.4

@ -0,0 +1,30 @@
{ stdenv, lib, bundlerEnv, bundlerUpdateScript, makeWrapper }:
let
rubyEnv = bundlerEnv {
name = "uniscribe";
gemdir = ./.;
};
in
stdenv.mkDerivation rec {
pname = "uniscribe";
version = (import ./gemset.nix).uniscribe.version;
nativeBuildInputs = [ makeWrapper ];
dontUnpack = true;
installPhase = ''
mkdir -p $out/bin
makeWrapper ${rubyEnv}/bin/uniscribe $out/bin/uniscribe
'';
passthru.updateScript = bundlerUpdateScript "uniscribe";
meta = with lib; {
description = "Explains Unicode characters/code points: Displays their name, category, and shows compositions";
homepage = "https://github.com/janlelis/uniscribe";
license = licenses.mit;
maintainers = with maintainers; [ kjeremy ];
};
}

File diff suppressed because it is too large Load Diff

@ -5335,6 +5335,8 @@ with pkgs;
uni2ascii = callPackage ../tools/text/uni2ascii { };
uniscribe = callPackage ../tools/text/uniscribe { };
galculator = callPackage ../applications/misc/galculator {
gtk = gtk3;
};

Loading…
Cancel
Save