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

38 lines
1 KiB
Nix
Raw Normal View History

2020-08-19 20:12:32 +00:00
{ stdenv, fetchFromGitHub, cmake }:
2014-12-08 20:53:52 +00:00
stdenv.mkDerivation rec {
pname = "utf8proc";
2020-12-16 12:15:11 +00:00
version = "2.6.1";
2014-12-08 20:53:52 +00:00
src = fetchFromGitHub {
owner = "JuliaStrings";
repo = pname;
rev = "v${version}";
2020-12-16 12:15:11 +00:00
sha256 = "1zqc6airkzkssbjxanx5v8blfk90180gc9id0dx8ncs54f1ib8w7";
2014-12-08 20:53:52 +00:00
};
2020-08-19 20:12:32 +00:00
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
"-DUTF8PROC_ENABLE_TESTING=ON"
"-DCMAKE_SKIP_BUILD_RPATH=OFF"
2020-08-19 20:12:32 +00:00
];
2014-12-08 20:53:52 +00:00
# the pkg-config file is not created in the cmake installation
# process, so we use the Makefile and install it manually
# see https://github.com/JuliaStrings/utf8proc/issues/198
preConfigure = "make libutf8proc.pc prefix=$out";
postInstall = "install -Dm644 ../libutf8proc.pc -t $out/lib/pkgconfig/";
doCheck = true;
2015-05-29 19:48:46 +00:00
meta = with stdenv.lib; {
description = "A clean C library for processing UTF-8 Unicode data";
homepage = "https://juliastrings.github.io/utf8proc/";
2015-05-29 19:48:46 +00:00
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.ftrvxmtrx ];
2014-12-08 20:53:52 +00:00
};
}