mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
nimPackages.asynctools: init at 2021-07-06
This commit is contained in:
parent
e10dc5b121
commit
5a79781dc6
20
pkgs/development/nim-packages/asynctools/default.nix
Normal file
20
pkgs/development/nim-packages/asynctools/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user