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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
794 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake }:
2020-06-01 13:14:31 +00:00
stdenv.mkDerivation rec {
pname = "utf8cpp";
version = "3.2.1";
2020-06-01 13:14:31 +00:00
src = fetchFromGitHub {
owner = "nemtrif";
repo = "utfcpp";
rev = "v${version}";
fetchSubmodules = true;
sha256 = "0gsbwif97i025bxgyax4fbf6v9z44zrca4s6wwd8x36ac8qzjppf";
2020-06-01 13:14:31 +00:00
};
cmakeFlags = [
"-DCMAKE_INSTALL_LIBDIR=lib"
];
nativeBuildInputs = [ cmake ];
# Tests fail on darwin, probably due to a bug in the test framework:
# https://github.com/nemtrif/utfcpp/issues/84
doCheck = !stdenv.isDarwin;
2020-06-01 13:14:31 +00:00
meta = with lib; {
2020-06-01 13:14:31 +00:00
homepage = "https://github.com/nemtrif/utfcpp";
description = "UTF-8 with C++ in a Portable Way";
license = licenses.boost;
2020-06-01 13:14:31 +00:00
maintainers = with maintainers; [ jobojeha ];
2021-03-10 11:00:13 +00:00
platforms = platforms.all;
2020-06-01 13:14:31 +00:00
};
}