nixpkgs/pkgs/development/libraries/tllist/default.nix

27 lines
610 B
Nix
Raw Normal View History

2020-07-06 04:07:25 +01:00
{ stdenv, lib, fetchgit, meson, ninja }:
stdenv.mkDerivation rec {
pname = "tllist";
2020-10-12 17:11:31 +01:00
version = "1.0.4";
2020-07-06 04:07:25 +01:00
src = fetchgit {
url = "https://codeberg.org/dnkl/tllist.git";
2020-10-12 17:11:31 +01:00
rev = version;
sha256 = "sha256-+u8p/VmI61SGRhZHaJBwgcVNetNOrYzg2NVQehbfRqg=";
2020-07-06 04:07:25 +01:00
};
nativeBuildInputs = [
meson ninja
];
2020-10-12 17:11:31 +01:00
doCheck = true;
2020-07-06 04:07:25 +01:00
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;
};
}