tllist: 1.0.4 -> 1.0.5
This commit is contained in:
parent
8eb03e2758
commit
19a714d431
@ -1,26 +1,41 @@
|
|||||||
{ stdenv, lib, fetchgit, meson, ninja }:
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchgit
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "tllist";
|
pname = "tllist";
|
||||||
version = "1.0.4";
|
version = "1.0.5";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "https://codeberg.org/dnkl/tllist.git";
|
url = "https://codeberg.org/dnkl/tllist.git";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-+u8p/VmI61SGRhZHaJBwgcVNetNOrYzg2NVQehbfRqg=";
|
sha256 = "wJEW7haQBtCR2rffKOFyqH3aq0eBr6H8T6gnBs2bNRg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [ meson ninja ];
|
||||||
meson ninja
|
|
||||||
];
|
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://codeberg.org/dnkl/tllist";
|
homepage = "https://codeberg.org/dnkl/tllist";
|
||||||
description = "C header file only implementation of a typed linked list";
|
description = "C header file only implementation of a typed linked list";
|
||||||
maintainers = with maintainers; [ fionera ];
|
longDescription = ''
|
||||||
|
Most C implementations of linked list are untyped. That is, their data
|
||||||
|
carriers are typically void *. This is error prone since your compiler
|
||||||
|
will not be able to help you correct your mistakes (oh, was it a
|
||||||
|
pointer-to-a-pointer... I thought it was just a pointer...).
|
||||||
|
|
||||||
|
tllist addresses this by using pre-processor macros to implement dynamic
|
||||||
|
types, where the data carrier is typed to whatever you want; both
|
||||||
|
primitive data types are supported as well as aggregated ones such as
|
||||||
|
structs, enums and unions.
|
||||||
|
'';
|
||||||
|
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ fionera AndersonTorres ];
|
||||||
platforms = with platforms; linux;
|
platforms = with platforms; linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user