summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/neither/default.nix
blob: f16315c967f0214547f3c1430ff49bb8969df6c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, Cabal, failure, transformers }:

cabal.mkDerivation (self: {
  pname = "neither";
  version = "0.3.1";
  sha256 = "1n00v2xs2ghm273barc3bbi67wgpvyihhgl1ij7qczyp9fhqlyfk";
  buildDepends = [ Cabal failure transformers ];
  meta = {
    homepage = "http://github.com/snoyberg/neither";
    description = "Provide versions of Either with good monad and applicative instances. (deprecated)";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})