tacent: init at 0.8.18

This commit is contained in:
PopeRigby
2024-09-23 14:36:39 -07:00
parent b94f259714
commit 01f3292dca
+37
View File
@@ -0,0 +1,37 @@
{
cmake,
fetchFromGitHub,
lib,
ninja,
stdenv,
}:
stdenv.mkDerivation rec {
pname = "tacent";
version = "0.8.18";
src = fetchFromGitHub {
owner = "bluescan";
repo = "tacent";
rev = version;
hash = "sha256-z8VuJS8OaVw5CeO/udvBEmcURKIy1oWVYUv6Ai8lTI8=";
};
nativeBuildInputs = [
cmake
ninja
];
meta = {
description = "C++ library providing linear algebra and various utility functions";
longDescription = ''
A C++ library implementing linear algebra, text and file IO, UTF-N conversions,
containers, image loading/saving, image quantization/filtering, command-line parsing, etc.
'';
homepage = "https://github.com/bluescan/tacent";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ PopeRigby ];
platforms = lib.platforms.linux;
};
}