Merge pull request #298392 from tobim/pkgs/xxhash-touch-ups

This commit is contained in:
Sandro
2024-07-29 01:35:37 +02:00
committed by GitHub
@@ -22,10 +22,6 @@ stdenv.mkDerivation rec {
# Using unofficial CMake build script to install CMake module files.
cmakeDir = "../cmake_unofficial";
cmakeFlags = [
"-DBUILD_SHARED_LIBS=${if stdenv.hostPlatform.isStatic then "OFF" else "ON"}"
];
meta = with lib; {
description = "Extremely fast hash algorithm";
longDescription = ''
@@ -40,5 +36,8 @@ stdenv.mkDerivation rec {
mainProgram = "xxhsum";
maintainers = with maintainers; [ orivej ];
platforms = platforms.all;
pkgConfigModules = [
"libxxhash"
];
};
}