corto: init at unstable-2023-06-27

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Guilhem Saurel 2024-03-25 22:47:12 +01:00 committed by Sandro Jäckel
parent 35fedceb8b
commit 835c1cbf10
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation {
pname = "corto";
version = "0-unstable-2024-04-05";
src = fetchFromGitHub {
owner = "cnr-isti-vclab";
repo = "corto";
rev = "d880519c490c88a39d12c31a914b6a687a7019c3";
hash = "sha256-0OUijrf+0ZNv3oYko2r8Kp9zgtg8b9RPL7DXHf15Ryc=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Mesh compression library, designed for rendering and speed";
homepage = "https://github.com/cnr-isti-vclab/corto";
license = licenses.mit;
maintainers = with maintainers; [ nim65s ];
};
}