summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/lifted-async/default.nix
blob: ecb6b9aa18ac59774688a59c4af491fefeae1883 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, async, constraints, HUnit, liftedBase, monadControl, mtl, tasty
, tastyHunit, tastyTh, transformersBase
}:

cabal.mkDerivation (self: {
  pname = "lifted-async";
  version = "0.6.0.1";
  sha256 = "12qbibsl26njx6m1dq12gqfb15rkyag23c1vkcinlk301a0cvsmf";
  buildDepends = [ async constraints liftedBase monadControl transformersBase ];
  testDepends = [
    async HUnit liftedBase monadControl mtl tasty tastyHunit tastyTh
  ];
  meta = {
    homepage = "https://github.com/maoe/lifted-async";
    description = "Run lifted IO operations asynchronously and wait for their results";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})