mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
libite: set platforms to linux + netbsd
From the README: > This library was initially built for and developed on GNU/Linux > systems as a light weight utility library, these days NetBSD should > also work.
This commit is contained in:
parent
53edfe1d1c
commit
339974e1a8
@ -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 ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user