lutgen: init at 0.8.3

This commit is contained in:
zzzsyyy 2023-07-05 09:57:51 +08:00 committed by Anderson Torres
parent 77671b681c
commit 0958732966
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "lutgen";
version = "0.8.3";
src = fetchFromGitHub {
owner = "ozwaldorf";
repo = "lutgen-rs";
rev = "v${version}";
hash = "sha256-9olBUPOi6ZQorgPxQX2lqZSlYjEPMwfhUF/Ze34v0nc=";
};
cargoHash = "sha256-hMbrzjfLSawrm+GmtLx7sQ7atr1aV2RU9rJXgun6HR8=";
meta = with lib; {
description = "A blazingly fast interpolated LUT generator and applicator for arbitrary and popular color palettes";
homepage = "https://github.com/ozwaldorf/lutgen-rs";
maintainers = with maintainers; [ zzzsy ];
mainProgram = "lutgen";
license = licenses.mit;
};
}

View File

@ -19785,6 +19785,8 @@ with pkgs;
lurk = callPackage ../development/tools/lurk { };
lutgen = callPackage ../applications/graphics/lutgen { };
maizzle = callPackage ../development/tools/maizzle { };
malt = callPackage ../development/tools/profiling/malt { };