cabal2nix-2.9.3: test/golden-test-cases/lifted-async.nix.golden
{ 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.2";
sha256 = "deadbeef";
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;
}