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

24 lines
579 B
Nix
Raw Normal View History

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