bstring: init at 1.0.3

This commit is contained in:
Eric Helgeson
2025-12-15 10:00:38 -06:00
parent 4b905997ac
commit d882a66ecc
+33
View File
@@ -0,0 +1,33 @@
{
lib,
stdenv,
fetchFromGitHub,
meson,
ninja,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "bstring";
version = "1.0.3";
src = fetchFromGitHub {
owner = "msteinert";
repo = "bstring";
tag = "v${finalAttrs.version}";
hash = "sha256-efXMSRcPgo+WlOdbS1kY2PYQqSVwcsVSyU1JfsU8OOo=";
};
nativeBuildInputs = [
meson
ninja
];
meta = {
description = "Better String Library for C";
homepage = "https://github.com/msteinert/bstring";
changelog = "https://github.com/msteinert/bstring/releases/tag/v${finalAttrs.version}";
license = lib.licenses.bsd3;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ nulleric ];
};
})