5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
26 lines
672 B
Nix
26 lines
672 B
Nix
{ 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;
|
|
};
|
|
}
|