summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/io-choice/default.nix
blob: f8b1f1d51a429af5566672c58c6e5e3d020d662d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal, liftedBase, monadControl, transformers, transformersBase
}:

cabal.mkDerivation (self: {
  pname = "io-choice";
  version = "0.0.2";
  sha256 = "0kxn357cc31gvaajg41h6xwpivq049dl1zd551xfvrvzndvy061f";
  buildDepends = [
    liftedBase monadControl transformers transformersBase
  ];
  meta = {
    description = "Choice for IO and lifted IO";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})