aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/utf8cpp/default.nix
blob: a2aac1241cd8129cfdebdeed8c090b65d23412c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
  pname = "utf8cpp";
  version = "3.1.1";

  src = fetchFromGitHub {
    owner = "nemtrif";
    repo = "utfcpp";
    rev = "v${version}";
    fetchSubmodules = true;
    sha256 = "1s2pda75488z7c3w3a6qv31bj239248696yk5j2a1drbg2x1dpfh";
  };

  cmakeFlags = [
    "-DCMAKE_BUILD_TYPE=None"
    "-DCMAKE_INSTALL_LIBDIR=lib"
    "-DINSTALL_GTEST=OFF"
  ];

  nativeBuildInputs = [ cmake ];

  doCheck = true;

  meta = with stdenv.lib; {
    homepage = "https://github.com/nemtrif/utfcpp";
    description = "UTF-8 with C++ in a Portable Way";
    license = licenses.free;
    maintainers = with maintainers; [ jobojeha ];
    platforms = platforms.linux;
  };
}