47c78acd8e
* utf8proc: 2.2.0 -> 2.3.0 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 * utf8proc: use fetchFromGitHub
24 lines
579 B
Nix
24 lines
579 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "utf8proc";
|
|
version = "2.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JuliaStrings";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1jhjl7nw6262ks5zrk447qmh6z2r5rrnnrm742dk33d7031g3s55";
|
|
};
|
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A clean C library for processing UTF-8 Unicode data";
|
|
homepage = "https://juliastrings.github.io/utf8proc/";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.ftrvxmtrx ];
|
|
};
|
|
}
|