summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/streaming-commons/default.nix
blob: fec0ddf79cd39078d8628e3a38526ae6fa38ead2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal, deepseq, hspec, network, QuickCheck, text, transformers
, zlib
}:

cabal.mkDerivation (self: {
  pname = "streaming-commons";
  version = "0.1.0.2";
  sha256 = "1idlhvlv5pg20xq8h4rmphyflvpc9q88krwm498mh3s4983ik28c";
  buildDepends = [ network text transformers zlib ];
  testDepends = [ deepseq hspec QuickCheck text zlib ];
  meta = {
    homepage = "https://github.com/fpco/streaming-commons";
    description = "Common lower-level functions needed by various streaming data libraries";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
  };
})