Merge pull request #146892 from smancill/ZHF-libite

libite: set platforms to linux + netbsd
This commit is contained in:
Thiago Kenji Okada 2021-11-21 14:12:00 -03:00 committed by GitHub
commit cdb0407fec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,6 @@ stdenv.mkDerivation rec {
buildInputs = [ libconfuse ];
meta = with lib; {
inherit (src.meta) homepage;
description = "Lightweight library of frog DNA";
longDescription = ''
Libite is a lightweight library of frog DNA. It can be used to fill
@ -29,7 +28,8 @@ stdenv.mkDerivation rec {
_SAFE macros in the BSD sys/queue.h API highly recommended when
traversing lists to delete/free nodes.
'';
platforms = platforms.unix;
homepage = "https://github.com/troglobit/libite";
platforms = with platforms; linux ++ netbsd;
maintainers = with maintainers; [ fpletz ];
license = with licenses; [ mit isc bsd2 bsd3 ];
};