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

cabal.mkDerivation (self: {
  pname = "stm-chans";
  version = "2.0.0";
  sha256 = "041dmjmr70was4vxf1ihizzarms7a8x53m80i65ggxxmq5xqmsa3";
  buildDepends = [ stm ];
  meta = {
    homepage = "http://code.haskell.org/~wren/";
    description = "Additional types of channels for STM";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})