mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 15:13:46 +00:00
25 lines
587 B
Nix
25 lines
587 B
Nix
{ lib, buildNimPackage, fetchFromGitHub, illwill }:
|
|
|
|
buildNimPackage rec {
|
|
pname = "illwillwidgets";
|
|
version = "0.1.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "enthus1ast";
|
|
repo = "illwillWidgets";
|
|
rev = "04f507cfd651df430b1421403b3a70cb061c4624";
|
|
hash = "sha256-YVNdgs8jquJ58qbcyNMMJt+hJYcvahYpkSrDBbO4ILU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ illwill ];
|
|
doCheck = false;
|
|
|
|
meta = with lib;
|
|
src.meta // {
|
|
description = "Mouse enabled widgets for illwill";
|
|
|
|
license = [ licenses.mit ];
|
|
maintainers = with maintainers; [ marcusramberg ];
|
|
};
|
|
}
|