nixpkgs/pkgs/development/nim-packages/chroma/default.nix

19 lines
520 B
Nix
Raw Normal View History

2023-08-02 14:47:15 +02:00
{ lib, buildNimPackage, fetchFromGitHub }:
2021-09-02 19:03:01 +02:00
2023-08-02 14:47:15 +02:00
buildNimPackage (final: prev: {
2021-09-02 19:03:01 +02:00
pname = "chroma";
2023-08-02 14:47:15 +02:00
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 ];
};
})