plutovg: init at 1.0.0 (#398966)

This commit is contained in:
Aleksana
2025-04-22 10:16:44 +08:00
committed by GitHub
+29
View File
@@ -0,0 +1,29 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "plutovg";
version = "1.0.0";
src = fetchFromGitHub {
owner = "sammycage";
repo = "plutovg";
tag = "v${finalAttrs.version}";
hash = "sha256-xNWwACKGU5UIJviVZ3wU4GMuRxKn/rR8jBsZQpZiFZ8=";
};
nativeBuildInputs = [
cmake
];
meta = {
homepage = "https://github.com/sammycage/plutovg/";
changelog = "https://github.com/sammycage/plutovg/releases/tag/v${finalAttrs.version}";
description = "Tiny 2D vector graphics library in C";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.eymeric ];
};
})