corto: init at unstable-2023-06-27

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by Guilhem Saurel Sandro and committed by Sandro Jäckel 835c1cbf 35fedceb

+27
+27
pkgs/by-name/co/corto/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + }: 7 + 8 + stdenv.mkDerivation { 9 + pname = "corto"; 10 + version = "0-unstable-2024-04-05"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "cnr-isti-vclab"; 14 + repo = "corto"; 15 + rev = "d880519c490c88a39d12c31a914b6a687a7019c3"; 16 + hash = "sha256-0OUijrf+0ZNv3oYko2r8Kp9zgtg8b9RPL7DXHf15Ryc="; 17 + }; 18 + 19 + nativeBuildInputs = [ cmake ]; 20 + 21 + meta = with lib; { 22 + description = "Mesh compression library, designed for rendering and speed"; 23 + homepage = "https://github.com/cnr-isti-vclab/corto"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ nim65s ]; 26 + }; 27 + }