Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 21 lines 570 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "utf8proc-${version}"; 5 version = "2.2.0"; 6 7 src = fetchurl { 8 url = "https://github.com/JuliaLang/utf8proc/archive/v${version}.tar.gz"; 9 sha256 = "1gsxxp7vk36z1g5mg19kq10j35dks5f9slsab2xfazh5vgdx33rz"; 10 }; 11 12 makeFlags = [ "prefix=$(out)" ]; 13 14 meta = with stdenv.lib; { 15 description = "A clean C library for processing UTF-8 Unicode data"; 16 homepage = https://julialang.org/utf8proc; 17 license = licenses.mit; 18 platforms = platforms.all; 19 maintainers = [ maintainers.ftrvxmtrx ]; 20 }; 21}