From 363cea29239ee412b17fd79ffa759e40d75f7ab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Wed, 20 Dec 2023 15:17:51 +0100 Subject: [PATCH] okolors: init at 0.5.1 --- pkgs/by-name/ok/okolors/package.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkgs/by-name/ok/okolors/package.nix diff --git a/pkgs/by-name/ok/okolors/package.nix b/pkgs/by-name/ok/okolors/package.nix new file mode 100644 index 000000000000..b6fd0750f7f2 --- /dev/null +++ b/pkgs/by-name/ok/okolors/package.nix @@ -0,0 +1,26 @@ +{ lib +, rustPlatform +, fetchFromGitHub +}: + +rustPlatform.buildRustPackage rec { + pname = "okolors"; + version = "0.5.1"; + + src = fetchFromGitHub { + owner = "Ivordir"; + repo = "Okolors"; + rev = "v${version}"; + sha256 = "sha256-Cwe6kyhsCU3wbuD0PTnj1JQOnMjH+sLmG5AiJImRGSU="; + }; + + cargoSha256 = "sha256-RVUrgz/YddT41N1omoPCW3Cjz7IWjc8sB7OwkCUDjM8="; + + meta = with lib; { + description = "Generate a color palette from an image using k-means clustering in the Oklab color space"; + homepage = "https://github.com/Ivordir/Okolors"; + license = licenses.mit; + maintainers = with maintainers; [ laurent-f1z1 ]; + mainProgram = "okolors"; + }; +}