Commit 0939c4c4 authored by Eman Resu's avatar Eman Resu
Browse files

colo: init at 0.4.1

parent a7f85ab6
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{
  rustPlatform,
  fetchFromGitHub,
  lib,
}:

rustPlatform.buildRustPackage rec {
  pname = "colo";
  version = "0.4.1";

  src = fetchFromGitHub {
    owner = "Aloso";
    repo = "colo";
    tag = "v${version}";
    hash = "sha256-ocGzZR4gM2sInXccbHxh7Vf0kcZTZOnVW0KM6zp/pR8=";
  };

  cargoHash = "sha256-HjEYC7FUHpxNWy/nUVO65O3f/RdT9hYZc3TpcqP3SSM=";

  meta = {
    description = "Displays colors in various color spaces";
    homepage = "https://aloso.github.io/colo";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ llakala ];
  };
}