libhl: add missing platforms

This commit is contained in:
xeals 2021-01-04 12:10:27 +11:00
parent 0a29cfdf1e
commit 5008a658a7
Signed by: xeals
GPG Key ID: A498C7AF27EC6B5C

View File

@ -26,9 +26,10 @@ stdenv.mkDerivation rec {
mkdir -p $out/include $out/lib mkdir -p $out/include $out/lib
''; '';
meta = { meta = with stdenv.lib; {
homepage = "https://github.com/xant/libhl"; homepage = "https://github.com/xant/libhl";
description = "Simple and fast C library implementing a thread-safe API to manage hash-tables, linked lists, lock-free ring buffers and queues "; description = "Simple and fast C library implementing a thread-safe API to manage hash-tables, linked lists, lock-free ring buffers and queues ";
license = stdenv.lib.licenses.lgpl3; license = licenses.lgpl3;
platforms = platforms.all;
}; };
} }