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

buildNimPackage rec {
  pname = "illwillwidgets";
  version = "0.1.11";

  src = fetchFromGitHub {
    owner = "enthus1ast";
    repo = "illwillWidgets";
    rev = "04f507cfd651df430b1421403b3a70cb061c4624";
    hash = "sha256-YVNdgs8jquJ58qbcyNMMJt+hJYcvahYpkSrDBbO4ILU=";
  };

  meta = with lib;
    src.meta // {
      description = "Mouse enabled widgets for illwill";

      license = [ licenses.mit ];
      maintainers = with maintainers; [ marcusramberg ];
    };
}