nixpkgs/pkgs/development/libraries/utf8proc/default.nix

24 lines
579 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
2014-12-08 20:53:52 +00:00
stdenv.mkDerivation rec {
pname = "utf8proc";
2019-05-21 23:49:33 +00:00
version = "2.4.0";
2014-12-08 20:53:52 +00:00
src = fetchFromGitHub {
owner = "JuliaStrings";
repo = pname;
rev = "v${version}";
2019-05-21 23:49:33 +00:00
sha256 = "1i42hqwc8znqii9brangwkxk5cyc2lk95ip405fg88zr7z2ncr34";
2014-12-08 20:53:52 +00:00
};
makeFlags = [ "prefix=$(out)" ];
2014-12-08 20:53:52 +00:00
2015-05-29 19:48:46 +00: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 19:48:46 +00:00
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.ftrvxmtrx ];
2014-12-08 20:53:52 +00:00
};
}