aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/tllist/default.nix
blob: a17b3e415d51f9ba6bfc9fa16a6ff6c756d74b46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, lib, fetchgit, meson, ninja }:

stdenv.mkDerivation rec {
  pname = "tllist";
  version = "1.0.2";

  src = fetchgit {
    url = "https://codeberg.org/dnkl/tllist.git";
    rev = "${version}";
    sha256 = "095wly66z9n2r6h318rackgl4g1w9l1vj96367ngcw7rpva9yppl";
  };

  nativeBuildInputs = [
    meson ninja
  ];

  meta = with lib; {
    homepage = "https://codeberg.org/dnkl/tllist";
    description = "C header file only implementation of a typed linked list";
    maintainers = with maintainers; [ fionera ];
    license = licenses.mit;
    platforms = with platforms; linux;
  };
}