summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/lifted-async/default.nix
blob: fa48f289a4cae30197fe20f1e139db068d41195f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ cabal, async, HUnit, liftedBase, monadControl, mtl, testFramework
, testFrameworkHunit, testFrameworkTh, transformersBase
}:

cabal.mkDerivation (self: {
  pname = "lifted-async";
  version = "0.1.0.1";
  sha256 = "03b89cixfin7ksdjh12g0pfrmgzw9mnx6nyvywv3rjc1sra3b8f0";
  buildDepends = [ async liftedBase monadControl transformersBase ];
  testDepends = [
    HUnit liftedBase monadControl mtl testFramework testFrameworkHunit
    testFrameworkTh
  ];
  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;
  };
})