pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / by-name / ok / okolors / package.nix
blob8d20c7432e8e242a74d211f250b3dffdade7f257
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "okolors";
8   version = "0.8.0";
10   src = fetchFromGitHub {
11     owner = "Ivordir";
12     repo = "Okolors";
13     rev = "v${version}";
14     hash = "sha256-U7rLynXZGHCeZjaXoXx2IRDgUFv7zOKfb4BPgDROzBc=";
15   };
17   cargoHash = "sha256-xRCxpmIocvkg1ErYVqBLHb/jXV2eWeWHg4IO/QsnnF0=";
19   meta = with lib; {
20     description = "Generate a color palette from an image using k-means clustering in the Oklab color space";
21     homepage = "https://github.com/Ivordir/Okolors";
22     license = licenses.mit;
23     maintainers = with maintainers; [ laurent-f1z1 ];
24     mainProgram = "okolors";
25   };