summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/async/default.nix
blob: 5b310f433b0a3e358a4122124592772b09612af5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal }:

cabal.mkDerivation (self: {
  pname = "async";
  version = "1.2";
  sha256 = "a5963d36fc1ba142d18920f967190b25cf80f700d863372b6d33ad5257a1773a";
  meta = {
    homepage = "http://gitorious.org/async/";
    description = "Asynchronous Computations";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})