tailscale: build derpprobe (#364918)
[NixPkgs.git] / pkgs / by-name / ok / okolors / package.nix
blob91f972e8cb25104750dafe57c8f3c5d71644fc9c
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "okolors";
9   version = "0.8.0";
11   src = fetchFromGitHub {
12     owner = "Ivordir";
13     repo = "Okolors";
14     rev = "v${version}";
15     hash = "sha256-U7rLynXZGHCeZjaXoXx2IRDgUFv7zOKfb4BPgDROzBc=";
16   };
18   cargoHash = "sha256-xRCxpmIocvkg1ErYVqBLHb/jXV2eWeWHg4IO/QsnnF0=";
20   meta = with lib; {
21     description = "Generate a color palette from an image using k-means clustering in the Oklab color space";
22     homepage = "https://github.com/Ivordir/Okolors";
23     license = licenses.mit;
24     maintainers = with maintainers; [ laurent-f1z1 ];
25     mainProgram = "okolors";
26   };