nixpkgs/pkgs/development/libraries/libite/default.nix
R. RyanTM d596db5ea6 libite: 2.0.1 -> 2.0.2 (#40484)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/libite/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 2.0.2 with grep in /nix/store/naarzbhrc25il5apxf2s1d6npnv5bdwj-libite-2.0.2
- directory tree listing: https://gist.github.com/5c0e5f0b94104a500555ba038e45c2bf
- du listing: https://gist.github.com/4fa4a3663027f65a44561a901994afc7
2018-05-16 14:44:31 +02:00

37 lines
1.2 KiB
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libconfuse }:
stdenv.mkDerivation rec {
name = "libite-${version}";
version = "2.0.2";
src = fetchFromGitHub {
owner = "troglobit";
repo = "libite";
rev = "v${version}";
sha256 = "0qk7231c1xwvjhkc9w7hasvafvgns10cx9kdhfdbc4r1hsh6d1ca";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libconfuse ];
meta = with stdenv.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
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.
'';
platforms = platforms.unix;
maintainers = with maintainers; [ fpletz ];
};
}