mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 22:54:17 +00:00
![Silvan Mosberger](/assets/img/avatar_default.png)
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
libconfuse,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libite";
|
|
version = "2.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "troglobit";
|
|
repo = "libite";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-q1NoHSiPmFPwkTJqg3L5fEBXF/JjRWvA9e4d532ILE8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
buildInputs = [ libconfuse ];
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight library of frog DNA";
|
|
longDescription = ''
|
|
Libite is a lightweight library of frog DNA. It can be used to fill
|
|
the gaps in any dinosaur project. It holds useful functions and macros
|
|
developed by both Finit and the OpenBSD project. Most notably the
|
|
string functions: strlcpy(3), strlcat(3) and the highly useful *BSD
|
|
sys/queue.h and sys/tree.h API's.
|
|
|
|
Libite is the frog DNA missing in GNU libc. However, -lite does not
|
|
aim to become another GLIB! One noticeable gap in GLIBC is the missing
|
|
_SAFE macros in the BSD sys/queue.h API — highly recommended when
|
|
traversing lists to delete/free nodes.
|
|
'';
|
|
homepage = "https://github.com/troglobit/libite";
|
|
platforms = with platforms; linux ++ netbsd;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
license = with licenses; [
|
|
mit
|
|
isc
|
|
bsd2
|
|
bsd3
|
|
];
|
|
};
|
|
}
|