2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake }:
|
2020-06-15 15:56:04 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "utf8cpp";
|
2024-01-25 14:12:00 +00:00
|
|
|
version = "4.0.5";
|
2020-06-15 15:56:04 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nemtrif";
|
|
|
|
repo = "utfcpp";
|
|
|
|
rev = "v${version}";
|
|
|
|
fetchSubmodules = true;
|
2024-01-25 14:12:00 +00:00
|
|
|
hash = "sha256-Z27/31obVErsmW1b1SVcr45nKlFu01RqqpTMwS0LqJ8=";
|
2020-06-15 15:56:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-06-15 15:56:04 +00:00
|
|
|
homepage = "https://github.com/nemtrif/utfcpp";
|
2023-10-09 19:29:22 +00:00
|
|
|
changelog = "https://github.com/nemtrif/utfcpp/releases/tag/v${version}";
|
2020-06-15 15:56:04 +00:00
|
|
|
description = "UTF-8 with C++ in a Portable Way";
|
2021-10-08 15:17:17 +00:00
|
|
|
license = licenses.boost;
|
2020-06-15 15:56:04 +00:00
|
|
|
maintainers = with maintainers; [ jobojeha ];
|
2021-03-19 17:17:44 +00:00
|
|
|
platforms = platforms.all;
|
2020-06-15 15:56:04 +00:00
|
|
|
};
|
|
|
|
}
|