summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/stm-chans/default.nix
blob: e8bd79a9a80a5dccf645bde925ab924d4e66f478 (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 = "3.0.0";
  sha256 = "1nnl5h88dshcmk0ydhkf84kkf6989igxry9r0z7lwlxfgf7q9nim";
  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;
  };
})