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

cabal.mkDerivation (self: {
  pname = "pipes-bytestring";
  version = "1.0.3";
  sha256 = "11jiaf5vs0jz8m0x9dlcvflh636131bj4jnlrj3r5nz1v7a64v6b";
  buildDepends = [ pipes pipesParse transformers ];
  meta = {
    description = "ByteString support for pipes";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.ocharles ];
  };
})