24 lines
579 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
2014-12-08 23:53:52 +03:00
stdenv.mkDerivation rec {
pname = "utf8proc";
2020-03-29 09:25:02 +00:00
version = "2.5.0";
2014-12-08 23:53:52 +03:00
src = fetchFromGitHub {
owner = "JuliaStrings";
repo = pname;
rev = "v${version}";
2020-03-29 09:25:02 +00:00
sha256 = "1xlkazhdnja4lksn5c9nf4bln5gjqa35a8gwlam5r0728w0h83qq";
2014-12-08 23:53:52 +03:00
};
makeFlags = [ "prefix=$(out)" ];
2014-12-08 23:53:52 +03:00
2015-05-29 21:48:46 +02:00
meta = with stdenv.lib; {
description = "A clean C library for processing UTF-8 Unicode data";
homepage = "https://juliastrings.github.io/utf8proc/";
2015-05-29 21:48:46 +02:00
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.ftrvxmtrx ];
2014-12-08 23:53:52 +03:00
};
}