nixpkgs/pkgs/development/libraries/utf8proc/default.nix
R. RyanTM 92f00a5853 utf8proc: 2.1.0 -> 2.1.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/utf8proc/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 2.1.1 with grep in /nix/store/bzpfz4cpf1lf7269ymwdblz2kn0iwf2b-utf8proc-2.1.1
- directory tree listing: https://gist.github.com/bc9fd69cddc0fd9435fab30a0abcae97
2018-04-30 09:39:09 -07:00

22 lines
570 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "utf8proc-${version}";
version = "2.1.1";
src = fetchurl {
url = "https://github.com/JuliaLang/utf8proc/archive/v${version}.tar.gz";
sha256 = "1cnpigrazhslw65s4j1a56j7p6d7d61wsxxjf1218i9mkwv2yw17";
};
makeFlags = [ "prefix=$(out)" ];
meta = with stdenv.lib; {
description = "A clean C library for processing UTF-8 Unicode data";
homepage = https://julialang.org/utf8proc;
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.ftrvxmtrx ];
};
}