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";
2020-03-29 10:25:02 +01:00
version = "2.5.0";
2014-12-08 20:53:52 +00:00
src = fetchFromGitHub {
owner = "JuliaStrings";
repo = pname;
rev = "v${version}";
2020-03-29 10:25:02 +01:00
sha256 = "1xlkazhdnja4lksn5c9nf4bln5gjqa35a8gwlam5r0728w0h83qq";
2014-12-08 20:53:52 +00:00
};
makeFlags = [ "prefix=$(out)" ];
2014-12-08 20:53:52 +00:00
2015-05-29 20:48:46 +01: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 20:48:46 +01:00
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.ftrvxmtrx ];
2014-12-08 20:53:52 +00:00
};
}