1
1
mirror of https://github.com/coot/free-category.git synced 2024-11-23 09:55:43 +03:00
free-category/nix/lifted-async-0.9.3.3.nix

21 lines
763 B
Nix
Raw Normal View History

2018-10-23 00:46:22 +03:00
{ mkDerivation, async, base, constraints, criterion, deepseq, HUnit
, lifted-base, monad-control, mtl, stdenv, tasty, tasty-hunit
, tasty-th, transformers-base
}:
mkDerivation {
pname = "lifted-async";
version = "0.9.3.3";
sha256 = "ae37d9cab3dd21aa65e4722c5268585d2d555fea1e8870920e7e567160240dbf";
libraryHaskellDepends = [
async base constraints lifted-base monad-control transformers-base
];
testHaskellDepends = [
async base HUnit lifted-base monad-control mtl tasty tasty-hunit
tasty-th
];
benchmarkHaskellDepends = [ async base criterion deepseq ];
homepage = "https://github.com/maoe/lifted-async";
description = "Run lifted IO operations asynchronously and wait for their results";
license = stdenv.lib.licenses.bsd3;
}