nimPackages.asynctools: init at 2021-07-06

This commit is contained in:
Mario Rodas 2023-01-21 23:20:00 -05:00
parent e10dc5b121
commit 5a79781dc6
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ lib, buildNimPackage, fetchFromGitHub, astpatternmatching }:
buildNimPackage rec {
pname = "asynctools";
version = "unstable-2021-07-06";
src = fetchFromGitHub {
owner = "cheatfate";
repo = "asynctools";
rev = "84ced6d002789567f2396c75800ffd6dff2866f7";
hash = "sha256-mrO+WeSzCBclqC2UNCY+IIv7Gs8EdTDaTeSgXy3TgNM=";
};
meta = with lib; {
description = "Various asynchronous tools for Nim language";
homepage = "https://github.com/cheatfate/asynctools";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}

View file

@ -14,6 +14,8 @@ lib.makeScope newScope (self:
astpatternmatching =
callPackage ../development/nim-packages/astpatternmatching { };
asynctools = callPackage ../development/nim-packages/asynctools { };
base32 = callPackage ../development/nim-packages/base32 { };
bumpy = callPackage ../development/nim-packages/bumpy { };