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

cabal.mkDerivation (self: {
  pname = "List";
  version = "0.5.1";
  sha256 = "1hgkal8jh035bs0z6z8i899dc0888fhdx8940y27aaxxbmlzfy1p";
  buildDepends = [ transformers ];
  meta = {
    homepage = "http://github.com/yairchu/generator/tree";
    description = "List monad transformer and class";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})