summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2021-12-22 06:47:45 +0000
committersterni <sternenseemann@systemli.org>2021-12-22 15:03:23 +0100
commitda759317b9e605d99caaa4fbb209508bdb6e67af (patch)
treec2251d1c1bfaf12becc10d209c1e190108b92cd4
parentc6dcfb8f7b4532cdaa42164cd48129139378b9e7 (diff)
downloadnixpkgs-da759317b9e605d99caaa4fbb209508bdb6e67af.tar
nixpkgs-da759317b9e605d99caaa4fbb209508bdb6e67af.tar.gz
nixpkgs-da759317b9e605d99caaa4fbb209508bdb6e67af.tar.bz2
nixpkgs-da759317b9e605d99caaa4fbb209508bdb6e67af.tar.lz
nixpkgs-da759317b9e605d99caaa4fbb209508bdb6e67af.tar.xz
nixpkgs-da759317b9e605d99caaa4fbb209508bdb6e67af.tar.zst
nixpkgs-da759317b9e605d99caaa4fbb209508bdb6e67af.zip
utf8proc: 2.6.1 -> 2.7.0
Co-authored-by: sternenseemann <sternenseemann@systemli.org>
-rw-r--r--pkgs/development/libraries/utf8proc/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/development/libraries/utf8proc/default.nix b/pkgs/development/libraries/utf8proc/default.nix
index b78999e96a7..0c20db31722 100644
--- a/pkgs/development/libraries/utf8proc/default.nix
+++ b/pkgs/development/libraries/utf8proc/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "utf8proc";
-  version = "2.6.1";
+  version = "2.7.0";
 
   src = fetchFromGitHub {
     owner = "JuliaStrings";
     repo = pname;
     rev = "v${version}";
-    sha256 = "1zqc6airkzkssbjxanx5v8blfk90180gc9id0dx8ncs54f1ib8w7";
+    sha256 = "sha256-UjZFW+ECU1qbKoo2J2GE8gMEas7trz7YI4mqF5WtOvM=";
   };
 
   nativeBuildInputs = [ cmake ];
@@ -19,12 +19,6 @@ stdenv.mkDerivation rec {
     "-DCMAKE_SKIP_BUILD_RPATH=OFF"
   ];
 
-  # 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;
 
   meta = with lib; {