Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
utf8proc: switch to cmake
  • Loading branch information
tobim committed Aug 19, 2020
1 parent 8e2b14a commit 020a212
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkgs/development/libraries/utf8proc/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub }:
{ stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
pname = "utf8proc";
Expand All @@ -11,7 +11,11 @@ stdenv.mkDerivation rec {
sha256 = "1xlkazhdnja4lksn5c9nf4bln5gjqa35a8gwlam5r0728w0h83qq";
};

makeFlags = [ "prefix=$(out)" ];
nativeBuildInputs = [ cmake ];

cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
];

meta = with stdenv.lib; {
description = "A clean C library for processing UTF-8 Unicode data";
Expand Down

0 comments on commit 020a212

Please sign in to comment.