summary refs log tree commit diff
path: root/pkgs/development/nim-packages/chroma/default.nix
blob: f8f161eef67e1c9713059862116b315ad4d90cc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildNimPackage, fetchFromGitHub }:

buildNimPackage (final: prev: {
  pname = "chroma";
  version = "0.2.7";
  src = fetchFromGitHub {
    owner = "treeform";
    repo = "chroma";
    rev = final.version;
    hash = "sha256-QSl8n60HO56kJ4BKKe/FjUC/cRNxqL2L56FqPwhmJl4=";
  };
  meta = final.src.meta // {
    description = "Everything you want to do with colors";
    homepage = "https://github.com/treeform/chroma";
    license = [ lib.licenses.mit ];
    maintainers = with lib.maintainers; [ ehmry ];
  };
})