From 5008a658a7aacc2ab3955679d80da796d839f992 Mon Sep 17 00:00:00 2001 From: xeals Date: Mon, 4 Jan 2021 12:10:27 +1100 Subject: [PATCH] libhl: add missing platforms --- pkgs/development/libraries/libhl/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libhl/default.nix b/pkgs/development/libraries/libhl/default.nix index d75faf7..c2ec2e2 100644 --- a/pkgs/development/libraries/libhl/default.nix +++ b/pkgs/development/libraries/libhl/default.nix @@ -26,9 +26,10 @@ stdenv.mkDerivation rec { mkdir -p $out/include $out/lib ''; - meta = { + meta = with stdenv.lib; { 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 "; - license = stdenv.lib.licenses.lgpl3; + license = licenses.lgpl3; + platforms = platforms.all; }; }