nixpkgs/pkgs/development/libraries/haskell/arrows/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

16 lines
451 B
Nix

{ cabal, Stream }:
cabal.mkDerivation (self: {
pname = "arrows";
version = "0.4.4.1";
sha256 = "1qpbpwsc3frjdngwjv3r58nfa0ik88cqh24ls47svigsz3c4n42v";
buildDepends = [ Stream ];
meta = {
homepage = "http://www.haskell.org/arrows/";
description = "Arrow classes and transformers";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})