Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 17.09 21 lines 570 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "utf8proc-${version}"; 5 version = "2.1.0"; 6 7 src = fetchurl { 8 url = "https://github.com/JuliaLang/utf8proc/archive/v${version}.tar.gz"; 9 sha256 = "0q1jhdkk4f9b0zb8s2ql3sba3br5nvjsmbsaybmgj064k9hwbk15"; 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}