about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/STMonadTrans/default.nix
blob: d533c167f6c19bee831c490f5235faf7eb998d24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal, mtl }:

cabal.mkDerivation (self: {
  pname = "STMonadTrans";
  version = "0.3.2";
  sha256 = "1cl5bsc5mr3silcmbjylgw5qa04pf2np9mippxnsa4p3dk089gkh";
  buildDepends = [ mtl ];
  meta = {
    description = "A monad transformer version of the ST monad";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})